blob: 1cbb05b03ce82a572915e487d6bca4629fca8b13 [file] [log] [blame]
/* PR 108375
* { dg-do compile }
* { dg-options "" }
* */
void
f (int a)
{
goto x; /* { dg-error "jump into scope of identifier with variably modified type" } */
struct { char (*p)[a]; } B;
x : ;
}