Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-flex-array-2.c
blob496f4f985cf8ee37bfda8d309b1233c4d320470f
1 /* PR c/5623 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
5 struct blah {
6 int number;
7 char array[];
8 };
10 void foo(void)
12 struct blah b;
13 b.array = "hi"; /* { dg-error "invalid use of flexible array member" } */