diff options
Diffstat (limited to 'test/switch.c')
-rw-r--r-- | test/switch.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/switch.c b/test/switch.c new file mode 100644 index 0000000..b1b7733 --- /dev/null +++ b/test/switch.c @@ -0,0 +1,10 @@ +void f(void) { + switch (0) { + case 3: break; + case 52: break; + case -3: break; + default: break; + case 0: break; + case 101: break; + } +} |