blob: cedb69f7b996b4dc92c43c644ef296176a26551c (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* PR c/9262 */
/* Originator: Rasmus Hahn <rassahah@neofonie.de> */
/* { dg-do compile } */
int foo(int i)
{
switch (i)
case 3:
return 1,
} /* { dg-error "parse error|syntax error|expected" } */
|