diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-11-05 19:55:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 03:55:25 +0800 |
commit | c2f6fd5fded46624da3851e3accc3b5165e6d588 (patch) | |
tree | 3f09f968b442df51362d1bf70bb377b16bf216b6 /test/compress/reduce_vars.js | |
parent | af4ea3ff6978f079531d011cffc7e2337b3ab48c (diff) | |
download | tracifyjs-c2f6fd5fded46624da3851e3accc3b5165e6d588.tar.gz tracifyjs-c2f6fd5fded46624da3851e3accc3b5165e6d588.zip |
fix corner case in `functions` (#4260)
fixes #4259
Diffstat (limited to 'test/compress/reduce_vars.js')
-rw-r--r-- | test/compress/reduce_vars.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compress/reduce_vars.js b/test/compress/reduce_vars.js index ea3703c1..838b130a 100644 --- a/test/compress/reduce_vars.js +++ b/test/compress/reduce_vars.js @@ -1999,7 +1999,7 @@ issue_1606: { var a, b; function g(){}; b = 2; - x(b); + x(2); } } } |