diff options
Diffstat (limited to 'test/compress/destructured.js')
-rw-r--r-- | test/compress/destructured.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/compress/destructured.js b/test/compress/destructured.js index a476705d..4f6a9f2f 100644 --- a/test/compress/destructured.js +++ b/test/compress/destructured.js @@ -2384,3 +2384,17 @@ issue_4508: { ] node_version: ">=6" } + +issue_4512: { + options = { + side_effects: true, + } + input: { + console.log(function([ a, b = a ]) {}([])); + } + expect: { + console.log(function([ a, b = a ]) {}([])); + } + expect_stdout: "undefined" + node_version: ">=6" +} |