diff options
Diffstat (limited to 'test/compress/reduce_vars.js')
-rw-r--r-- | test/compress/reduce_vars.js | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/test/compress/reduce_vars.js b/test/compress/reduce_vars.js index 2b2c77da..6f302ecd 100644 --- a/test/compress/reduce_vars.js +++ b/test/compress/reduce_vars.js @@ -1355,10 +1355,9 @@ defun_inline_1: { function f() { return function(b) { return b; - }(2) + h(); - function h() { + }(2) + function h() { return h(); - } + }(); } } } @@ -1382,12 +1381,11 @@ defun_inline_2: { } expect: { function f() { - function h() { - return h(); - } return function(b) { return b; - }(2) + h(); + }(2) + function h() { + return h(); + }(); } } } |