PR other/25028
[official-gcc.git] / gcc / testsuite / gcc.dg / array-2.c
blob06c753f63216be70f8d5e2204b84bc164d9b2a22
1 /* { dg-do compile } */
2 /* { dg-options "" } */
4 /* Verify that we can't do things to get ourselves in trouble
5 with GCC's initialized flexible array member extension. */
7 struct f { int w; int x[]; };
8 struct g { struct f f; };
9 struct g g1 = { { 0, { } } };
10 struct g g2 = { { 0, { 1 } } }; /* { dg-error "(nested context)|(near initialization)" "nested" } */
12 struct h { int x[0]; int y; };
13 struct h h1 = { { 0 }, 1 }; /* { dg-error "(excess elements)|(near initialization)" "before end" } */