| Index: test/message/for-in-loop-initializers-strict.js
|
| diff --git a/test/message/class-constructor-generator.js b/test/message/for-in-loop-initializers-strict.js
|
| similarity index 71%
|
| copy from test/message/class-constructor-generator.js
|
| copy to test/message/for-in-loop-initializers-strict.js
|
| index 5d370f865eaa84bd187aab7721acfc2a0a390eac..6aa092550152c46ce74d592c7dd432dac138830c 100644
|
| --- a/test/message/class-constructor-generator.js
|
| +++ b/test/message/for-in-loop-initializers-strict.js
|
| @@ -2,9 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
| //
|
| -// Flags: --harmony-classes
|
| 'use strict';
|
|
|
| -class C {
|
| - *constructor() {}
|
| +function test() {
|
| + for (var x = void 0 in [1, 2, 3]) {
|
| + return x;
|
| + }
|
| }
|
|
|