blob: 094f90ac729eafa61e89bb83952f59ff90ea2fc3 [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// Copyright (C) 2013 the V8 project authors. All rights reserved.
2// This code is governed by the BSD license found in the LICENSE file.
3
4/*---
5 description: >
6 `yield` is a reserved keyword within generator function bodies and may
7 not be used as a label.
8 features: [generators]
9 es6id: 12.1.1
10 negative: SyntaxError
11 ---*/
12
13class A {
14 *g() {
15 yield: 1;
16 }
17}