| Index: test/mjsunit/regress/regress-4214.js
|
| diff --git a/test/message/export-duplicate.js b/test/mjsunit/regress/regress-4214.js
|
| similarity index 68%
|
| copy from test/message/export-duplicate.js
|
| copy to test/mjsunit/regress/regress-4214.js
|
| index f45aefe13f8a427bd7ad5bced7da24db32ec5e25..7c28104b8aaef7c840193a68a5bae0da94dbb183 100644
|
| --- a/test/message/export-duplicate.js
|
| +++ b/test/mjsunit/regress/regress-4214.js
|
| @@ -1,9 +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
|
|
|
| -var a, b;
|
| -export { a };
|
| -export { a, b };
|
| +var o = { eval: function() { return this; } }
|
| +with (o) assertSame(o, eval());
|
|
|