normal (i.e. non-brace) initializers

This commit is contained in:
pommicket 2022-01-29 11:08:57 -05:00
parent 217794afce
commit 1fd79e0ad7
3 changed files with 154 additions and 8 deletions

View file

@ -32,6 +32,14 @@ static unsigned int y;
static unsigned int z[1000];
static unsigned int w;
typedef struct {
int x;
} Test;
int a = -138;
double f = 0;
int j = 3+7<<5, k = 123;
/*
NOTE: THIS MUST WORK
int x[] = {1,2,3}