summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/language/statements/for-in/const-initializer.js
blob: 940a14be1988148967f2140df75912a39f0ebc3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// |reftest| error:SyntaxError
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-initializers-in-forin-statement-heads
description: >
    for-in initializers with const are prohibited
negative:
  phase: parse
  type: SyntaxError
---*/

$DONOTEVALUATE();

for (const a = 0 in {});