diff options
Diffstat (limited to 'test/compress/hoist_vars.js')
-rw-r--r-- | test/compress/hoist_vars.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/compress/hoist_vars.js b/test/compress/hoist_vars.js index 97987fd9..39a27275 100644 --- a/test/compress/hoist_vars.js +++ b/test/compress/hoist_vars.js @@ -323,9 +323,7 @@ issue_4893_1: { expect: { try{ (function f() { - var b; - b = null; - b.p += 42; + null.p += 42; f; })(); } catch (e) { |