Rebase.
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-vla-1.c
blob4a3a0f8e238a66b8776e21736f426ead94d9850b
1 /* Origin: PR 3467 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
5 void
6 tdef (int n)
8 typedef int A[n]; /* { dg-bogus "forbids variable length array" } */
9 A a;
10 A *p;
11 p = &a;