| Index: test/message/strict-formal-parameters.js
|
| diff --git a/test/message/import-as-reserved-word.js b/test/message/strict-formal-parameters.js
|
| similarity index 76%
|
| copy from test/message/import-as-reserved-word.js
|
| copy to test/message/strict-formal-parameters.js
|
| index 562699d45f84a8c2f65f38b1d6d7d5b7de147bf5..a6c75317b374e6a06d3497f3812f3f220db3e880 100644
|
| --- a/test/message/import-as-reserved-word.js
|
| +++ b/test/message/strict-formal-parameters.js
|
| @@ -1,7 +1,6 @@
|
| // Copyright 2015 the V8 project authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
| -//
|
| -// MODULE
|
|
|
| -import { foo as import } from "mod";
|
| +"use strict";
|
| +function foo(b, a, a, d) { return a }
|
|
|