blob: 593c42d8b16ef8ec3a4fb4acec8a53e5cc219260 [file] [log] [blame]
/* 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;
}