Sign in
chromium
/
external
/
github.com
/
llvm-mirror
/
clang
/
327f79bc69360fadf014aecc5e81bc706f9693b6
/
.
/
test
/
Import
/
switch-stmt
/
Inputs
/
F.cpp
blob: 5d0d8376d4622a9c4af02f830cd8f7b626afaf23 [
file
] [
log
] [
blame
]
void
f
()
{
switch
(
1
)
{
case
1
:
case
2
:
break
;
case
3
...
4
:
case
5
...
5
:
break
;
}
switch
(
int
varname
;
1
)
{
case
1
:
break
;
case
2
:
break
;
case
3
...
5
:
break
;
}
switch
(
1
)
default
:
break
;
switch
(
0
)
;
}