rt_gccstream/gcc/testsuite/gcc.dg/c99-flex-array-5.c

7 lines
283 B
C

/* Test for flexible array members: not permitted in unions. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
union u { int a; char b[]; }; /* { dg-error "flexible array member in union" } */