| Index: test/message/for-in-loop-initializers-destructuring.js
|
| diff --git a/test/message/try-catch-lexical-conflict.js b/test/message/for-in-loop-initializers-destructuring.js
|
| similarity index 82%
|
| copy from test/message/try-catch-lexical-conflict.js
|
| copy to test/message/for-in-loop-initializers-destructuring.js
|
| index a5db29898a2bedc549041630d79b7c112fd760ae..eab8b81cf371b13c0bf44a48cb106acb1a59badf 100644
|
| --- a/test/message/try-catch-lexical-conflict.js
|
| +++ b/test/message/for-in-loop-initializers-destructuring.js
|
| @@ -4,8 +4,6 @@
|
| //
|
| // Flags: --harmony-destructuring-bind
|
|
|
| -"use strict";
|
| -try {
|
| -} catch ({x}) {
|
| - let x;
|
| +function f() {
|
| + for (var [x, y] = {} in {});
|
| }
|
|
|