braced initializers in local declarations
This commit is contained in:
parent
ebe96b9e85
commit
41f122f01e
2 changed files with 31 additions and 8 deletions
|
@ -15,7 +15,12 @@ int h(void) {
|
|||
int y, r[3], s;
|
||||
char d, e[5], f, g, *p;
|
||||
int z = 3, R=12+459834-g;
|
||||
return g;
|
||||
int x[] = {1,2,3,4,5};
|
||||
struct {
|
||||
char a,b;
|
||||
} P[] = {1,2,3,4,5};
|
||||
static int marker = 0x12345678;
|
||||
return 5;
|
||||
}
|
||||
|
||||
/* typedef int AA[sizeof x]; */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue