blob: 58e343b90355bbd8ad022463a18497d095e387c3 [file] [log] [blame]
Ben Murdochc5610432016-08-08 18:44:38 +01001// Copyright 2015 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Flags: --harmony-for-in
6
7assertThrows("for (var x = 0 in {});", SyntaxError);
8assertThrows("for (const x = 0 in {});", SyntaxError);
9assertThrows("for (let x = 0 in {});", SyntaxError);