aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2020-01-07 20:06:25 +0800
committerGitHub <noreply@github.com>2020-01-07 20:06:25 +0800
commitf5ceff6e4b94a032078b0730f91662ee62758eb4 (patch)
tree561f9a3eb863ca0117b15c7b568756d9ee74e492 /test
parent4d6771b9b1d89f0b49625795a92267d6e59dd064 (diff)
downloadtracifyjs-f5ceff6e4b94a032078b0730f91662ee62758eb4.tar.gz
tracifyjs-f5ceff6e4b94a032078b0730f91662ee62758eb4.zip
fix corner case in `unused` (#3674)
fixes #3673
Diffstat (limited to 'test')
-rw-r--r--test/compress/drop-unused.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/compress/drop-unused.js b/test/compress/drop-unused.js
index b61af07a..0691a180 100644
--- a/test/compress/drop-unused.js
+++ b/test/compress/drop-unused.js
@@ -2355,3 +2355,23 @@ issue_3664: {
}
expect_stdout: "PASS"
}
+
+issue_3673: {
+ options = {
+ pure_getters: "strict",
+ side_effects: true,
+ toplevel: true,
+ unused: true,
+ }
+ input: {
+ var a;
+ (a = [ a ]).p = 42;
+ console.log("PASS");
+ }
+ expect: {
+ var a;
+ (a = [ a ]).p = 42;
+ console.log("PASS");
+ }
+ expect_stdout: "PASS"
+}