Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Import / switch-stmt / Inputs / F.cpp
blob5d0d8376d4622a9c4af02f830cd8f7b626afaf23
1 void f() {
2 switch (1) {
3 case 1:
4 case 2:
5 break;
6 case 3 ... 4:
7 case 5 ... 5:
8 break;
10 switch (int varname; 1) {
11 case 1:
12 break;
13 case 2:
14 break;
15 case 3 ... 5:
16 break;
18 switch (1)
19 default:
20 break;
21 switch (0)