blob: c46307b3448a2dfe67d767ac654c4368acba3295 [file] [log] [blame]
// Copyright (C) 2019 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-iteration-statements
description: >
Initializer is not allowed in head's ForDeclaration position.
info: |
IterationStatement:
for await (ForDeclaration of AssignmentExpression) Statement
negative:
phase: parse
type: SyntaxError
features: [async-iteration]
---*/
$DONOTEVALUATE();
async function fn() {
for await (let [x] = 1 of []) {}
}