Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-flex-array-5.c
blob385b0cb959e4267c66fcac1ec0aff99ae12a6ceb
1 /* Test for flexible array members: not permitted in unions. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
6 union u { int a; char b[]; }; /* { dg-error "flexible array member in union" } */