diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-12-01 18:10:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-01 18:10:37 +0800 |
commit | e915832a36730c7eb29328c84ab9c5eecf1cb1f6 (patch) | |
tree | 4f950ec2bb8c49cdcc8b6758609ad1b02b06c449 /test/compress/functions.js | |
parent | 0593892d6efeee15b54bc91bdd0ef1224a466541 (diff) | |
download | tracifyjs-e915832a36730c7eb29328c84ab9c5eecf1cb1f6.tar.gz tracifyjs-e915832a36730c7eb29328c84ab9c5eecf1cb1f6.zip |
enhance `unused` (#3617)
Diffstat (limited to 'test/compress/functions.js')
-rw-r--r-- | test/compress/functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compress/functions.js b/test/compress/functions.js index 4fea42dc..1473f74c 100644 --- a/test/compress/functions.js +++ b/test/compress/functions.js @@ -1279,7 +1279,7 @@ issue_2630_3: { expect: { var x = 2, a = 1; (function() { - (function f1(a) { + (function f1() { f2(); --x >= 0 && f1({}); })(a++); |