diff options
Diffstat (limited to 'test/switch-long-long.c')
-rw-r--r-- | test/switch-long-long.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/switch-long-long.c b/test/switch-long-long.c new file mode 100644 index 0000000..65e022f --- /dev/null +++ b/test/switch-long-long.c @@ -0,0 +1,7 @@ +int main(void) { + switch (0x12300000000) { + case 0: return 1; + case 0x12300000000: return 0; + } + return 2; +} |