1 /* PR c/9262 */
2 /* Originator: Rasmus Hahn <rassahah@neofonie.de> */
3 /* { dg-do compile } */
4
5 int foo(int i)
6 {
7 switch (i)
8 case 3:
9 return 1;
10 case 4: /* { dg-error "not within a switch statement" } */
11 return 1;
12 }