1 2 3 4 5 6 7 8 9 10 11 12
// { dg-options "" } // C99 anon struct variable with array accesses. struct s { int a[1]; }; void foo5 (void) { ((struct s) { { 0 } }).a[0] = 1; }