diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-04-18 11:52:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 18:52:44 +0800 |
commit | 60d4e7b09fb962598a9f9f0fb64f92416a9f7e9c (patch) | |
tree | cecb9e23567d6b75d97933be4002975f3ca5cc52 /test/compress/keep_fargs.js | |
parent | b38838c6bf064bfe54f0419a5eb7cd4298bfc3a3 (diff) | |
download | tracifyjs-60d4e7b09fb962598a9f9f0fb64f92416a9f7e9c.tar.gz tracifyjs-60d4e7b09fb962598a9f9f0fb64f92416a9f7e9c.zip |
enhance `unused` (#3794)
Diffstat (limited to 'test/compress/keep_fargs.js')
-rw-r--r-- | test/compress/keep_fargs.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/compress/keep_fargs.js b/test/compress/keep_fargs.js index 85fcb0bf..c2a4ceef 100644 --- a/test/compress/keep_fargs.js +++ b/test/compress/keep_fargs.js @@ -1226,8 +1226,7 @@ chained_3: { } expect: { console.log(function(b) { - var c = 1; - c = b; + var c = 1, c = b; b++; return c; }(2)); |