blob: 0378ce38bcdfb5a9883fb0a2f0c2430ba15edef4 [file] [log] [blame]
/* Origin: PR 3467 */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
void
tdef (int n)
{
typedef int A[n]; /* { dg-bogus "forbids variable-size array" } */
A a;
A *p;
p = &a;
}