llvm-project/clang/test/Import/switch-stmt/Inputs/F.cpp

19 lines
191 B
C++

void f() {
switch (1) {
case 1:
case 2:
break;
}
switch (int varname; 1) {
case 1:
break;
case 2:
break;
}
switch (1)
default:
break;
switch (0)
;
}