blob: 0094586df0ec88c300481f594a6464c2d2b1cf37 [file] [log] [blame]
// 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-generator-function-definitions
es6id: 14.4
description: >
YieldExpression operand may not include the `in` keyword in contexts where it
is disallowed
info: |
Syntax
yield [no LineTerminator here] AssignmentExpression[?In, +Yield]
negative:
phase: parse
type: SyntaxError
features: [generators]
---*/
$DONOTEVALUATE();
function* g() {
for (yield '' in {}; ; ) ;
}