summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/language/statements/for-in/bare-initializer.js
blob: 6c9ecce1eab3ad557efd9af442986699a09e96f0 (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 heads prohibit AssignmentExpressions
negative:
  phase: parse
  type: SyntaxError
---*/

$DONOTEVALUATE();
var a;

for (a = 0 in {});