F.cpp 261 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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) ; }