blob: 0401ead5b2143e40516068d239d7b33fe6dc1b89 [file] [log] [blame]
/* PR 108375
* { dg-do compile }
* { dg-options "" }
* */
void
f (int a)
{
typedef int A[a];
goto x; /* { dg-error "jump into scope of identifier with variably modified type" } */
A *p[2];
x : ;
}