diff options
Diffstat (limited to 'test/compress/keep_fargs.js')
-rw-r--r-- | test/compress/keep_fargs.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/compress/keep_fargs.js b/test/compress/keep_fargs.js index 74b801d3..440abbd9 100644 --- a/test/compress/keep_fargs.js +++ b/test/compress/keep_fargs.js @@ -873,13 +873,13 @@ iife_func_side_effects: { function z() { console.log("z"); } - (function(a, b) { + (function(b) { return function() { console.log("FAIL"); } + b(); - })(x(), function() { + })((x(), function() { return y(); - }, z()); + }), z()); } expect_stdout: [ "x", |