let-ary-ptrn-init-err.js (465B)
1 // |reftest| error:SyntaxError 2 // Copyright (C) 2019 Aleksey Shvayka. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 /*--- 5 esid: sec-iteration-statements 6 description: > 7 Initializer is not allowed in head's ForDeclaration position. 8 info: | 9 IterationStatement: 10 for (ForDeclaration of AssignmentExpression) Statement 11 negative: 12 phase: parse 13 type: SyntaxError 14 ---*/ 15 16 $DONOTEVALUATE(); 17 18 for (let [x] = 1 of []) {}