Index: test/message/arrow-param-after-rest-2.js |
diff --git a/test/message/export-duplicate.js b/test/message/arrow-param-after-rest-2.js |
similarity index 67% |
copy from test/message/export-duplicate.js |
copy to test/message/arrow-param-after-rest-2.js |
index f45aefe13f8a427bd7ad5bced7da24db32ec5e25..3b42f1924705ffbc30094ec1288c696629c7da9b 100644 |
--- a/test/message/export-duplicate.js |
+++ b/test/message/arrow-param-after-rest-2.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. |
// |
-// MODULE |
+// Flags: --harmony-rest-parameters --harmony-arrow-functions |
-var a, b; |
-export { a }; |
-export { a, b }; |
+(w, ...x, y) => 10 |