1 /* PR 108375
2 * { dg-do compile }
3 * { dg-options "" }
4 * */
5
6 void
7 f (int a)
8 {
9 goto x; /* { dg-error "jump into scope of identifier with variably modified type" } */
10 struct { char (*p)[a]; } B;
11 x : ;
12 }
13
14