PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / c99struct1.C
blob93e84b460393171b03b449ae2b5ad8a1adaa674a
1 // { dg-options "" }
2 // C99 anon struct variable with array accesses.
4 struct s { int a[1]; };
6 void
7 foo5 (void)
9           ((struct s) { { 0 } }).a[0] = 1;