aboutsummaryrefslogtreecommitdiff
path: root/test/compress/switch.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/compress/switch.js')
-rw-r--r--test/compress/switch.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/compress/switch.js b/test/compress/switch.js
index b763d741..fbb86eda 100644
--- a/test/compress/switch.js
+++ b/test/compress/switch.js
@@ -833,7 +833,34 @@ issue_2535: {
}
expect: {
w(), 42;
+ 42;
y();
z();
}
}
+
+issue_1750: {
+ options = {
+ dead_code: true,
+ evaluate: true,
+ switches: true,
+ }
+ input: {
+ var a = 0, b = 1;
+ switch (true) {
+ case a, true:
+ default:
+ b = 2;
+ case true:
+ }
+ console.log(a, b);
+ }
+ expect: {
+ var a = 0, b = 1;
+ true;
+ a, true;
+ b = 2;
+ console.log(a, b);
+ }
+ expect_stdout: "0 2"
+}