repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pretty-print.h (pp_base): Remove.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
switch-3.c
blob
593c42d8b16ef8ec3a4fb4acec8a53e5cc219260
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
}