aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/compress/destructured.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/compress/destructured.js b/test/compress/destructured.js
index 1c448f2a..8e1cf68c 100644
--- a/test/compress/destructured.js
+++ b/test/compress/destructured.js
@@ -1906,3 +1906,25 @@ issue_4395: {
expect_stdout: "PASS"
node_version: ">=6"
}
+
+issue_4399: {
+ options = {
+ arguments: true,
+ }
+ input: {
+ console.log(function({
+ [arguments[1]]: a,
+ }, b) {
+ return a;
+ }([ "PASS" ], 0));
+ }
+ expect: {
+ console.log(function({
+ [arguments[1]]: a,
+ }, b) {
+ return a;
+ }([ "PASS" ], 0));
+ }
+ expect_stdout: "PASS"
+ node_version: ">=6"
+}