aboutsummaryrefslogtreecommitdiff
path: root/test/compress/destructured.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/compress/destructured.js')
-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 41e337be..140d48e1 100644
--- a/test/compress/destructured.js
+++ b/test/compress/destructured.js
@@ -2625,3 +2625,25 @@ issue_4994: {
expect_stdout: "PASS"
node_version: ">=6"
}
+
+issue_5017: {
+ options = {
+ collapse_vars: true,
+ reduce_vars: true,
+ toplevel: true,
+ }
+ input: {
+ var a = function() {};
+ var b = c = a;
+ var c = [ c ] = [ c ];
+ console.log(c[0] === a ? "PASS" : "FAIL");
+ }
+ expect: {
+ var a = function() {};
+ var b = a;
+ var c = [ c ] = [ c = a ];
+ console.log(c[0] === a ? "PASS" : "FAIL");
+ }
+ expect_stdout: "PASS"
+ node_version: ">=6"
+}