diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-01-07 20:06:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 20:06:25 +0800 |
commit | f5ceff6e4b94a032078b0730f91662ee62758eb4 (patch) | |
tree | 561f9a3eb863ca0117b15c7b568756d9ee74e492 /test | |
parent | 4d6771b9b1d89f0b49625795a92267d6e59dd064 (diff) | |
download | tracifyjs-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.js | 20 |
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" +} |