diff options
Diffstat (limited to 'tests/custom/03_bugs/03_switch_fallthrough_miscompilation')
-rw-r--r-- | tests/custom/03_bugs/03_switch_fallthrough_miscompilation | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/custom/03_bugs/03_switch_fallthrough_miscompilation b/tests/custom/03_bugs/03_switch_fallthrough_miscompilation deleted file mode 100644 index 3e6410e..0000000 --- a/tests/custom/03_bugs/03_switch_fallthrough_miscompilation +++ /dev/null @@ -1,16 +0,0 @@ -When falling through from a matched switch case into the default case, -the compiler incorrectly emitted bytecode that led to an endless loop. - --- Expect stdout -- -1 --- End -- - --- Testcase -- -{% - switch (1) { - case 1: - default: - print("1\n"); - } -%} --- End -- |