| Index: test/message/default-parameter-tdz-arrow.js
|
| diff --git a/test/message/arrow-param-after-rest.js b/test/message/default-parameter-tdz-arrow.js
|
| similarity index 74%
|
| copy from test/message/arrow-param-after-rest.js
|
| copy to test/message/default-parameter-tdz-arrow.js
|
| index 3284606a4e968f19fc32da31011d4988b40655b1..cad091f8ac66f0607846ee63a387567fea0e129c 100644
|
| --- a/test/message/arrow-param-after-rest.js
|
| +++ b/test/message/default-parameter-tdz-arrow.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
|
|
|
| -(...x, y) => 10
|
| +((a=-a) => { })();
|
|
|