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