Index: test/mjsunit/harmony/regress/regress-4395-global-eval.js |
diff --git a/test/message/arrow-param-after-rest-2.js b/test/mjsunit/harmony/regress/regress-4395-global-eval.js |
similarity index 66% |
copy from test/message/arrow-param-after-rest-2.js |
copy to test/mjsunit/harmony/regress/regress-4395-global-eval.js |
index c01cec8ad4f412c97797e07e946d1730a6513bcc..7860dae9459109cfcac72410a33b5c6b42e2bd60 100644 |
--- a/test/message/arrow-param-after-rest-2.js |
+++ b/test/mjsunit/harmony/regress/regress-4395-global-eval.js |
@@ -2,6 +2,6 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
// |
-// Flags: --harmony-rest-parameters |
+// Flags: --harmony-default-parameters |
-(w, ...x, y) => 10 |
+((x, y = eval('x')) => assertEquals(42, y))(42); |