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