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