summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/language/statements/for-in/var-objectbindingpattern-initializer.js
blob: dfa077eaded74aa9cb198eb34cdeb57cf916e07a (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 ObjectBindingPattern are always prohibited
negative:
  phase: parse
  type: SyntaxError
---*/

$DONOTEVALUATE();

for (var {a} = 0 in {});