2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-vla-1.c
blob0378ce38bcdfb5a9883fb0a2f0c2430ba15edef4
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-size array" } */
9 A a;
10 A *p;
11 p = &a;