Files
2018-08-02 17:53:23 +01:00

29 lines
249 B
C

static void f(int x) {
switch(x) {
}
switch(x) {
default:;
}
switch(x) {
case 0:;
}
switch(x) {
default:
case 0:;
}
switch(x) {
case 0:;
case 1:;
}
switch(x) {
default:;
case 0:;
case 1:;
}
}