1 /* Origin: PR 3467 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
4
5 void
tdef(int n)6 tdef (int n)
7 {
8 typedef int A[n]; /* { dg-error "forbids variable length array" } */
9 A a;
10 A *p;
11 p = &a;
12 }
13