Index: test/mjsunit/harmony/regress/regress-arrow-duplicate-params.js |
diff --git a/test/message/strong-object-set-proto.js b/test/mjsunit/harmony/regress/regress-arrow-duplicate-params.js |
similarity index 67% |
copy from test/message/strong-object-set-proto.js |
copy to test/mjsunit/harmony/regress/regress-arrow-duplicate-params.js |
index 890dd84d7292372c75cb9180ce67c3accadd0b81..a43f022c02d5ac942b5f7eae4b329f1beb78bfa9 100644 |
--- a/test/message/strong-object-set-proto.js |
+++ b/test/mjsunit/harmony/regress/regress-arrow-duplicate-params.js |
@@ -2,8 +2,6 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// Flags: --strong-mode |
+// Flags: --harmony-arrow-functions |
-"use strong"; |
- |
-({}).__proto__ = {}; |
+assertThrows("(x, x, y) => 10;", SyntaxError); |