Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
switch-3.c
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
;
}