PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-flex-array-typedef-2.c
blobf869f75c2bdd4c8f313653696873300df6815df7
1 /* Test for invalid uses of flexible array members. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
5 typedef char A[];
7 struct S {
8 int n;
9 A a;
12 void
13 foo (void)
15 struct S s;
16 s.a = "abc"; /* { dg-error "invalid use of flexible array member" } */