Index: test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-yield-as-function-binding-identifier.js |
diff --git a/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-yield-as-function-binding-identifier.js b/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-yield-as-function-binding-identifier.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ec54ee718289c5c8c671c229449808b64217e9f2 |
--- /dev/null |
+++ b/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-yield-as-function-binding-identifier.js |
@@ -0,0 +1,14 @@ |
+// Copyright 2017 the V8 project authors. All rights reserved. |
+// This code is governed by the BSD license found in the LICENSE file. |
+ |
+/*--- |
+author: Caitlin Potter <caitp@igalia.com> |
+esid: 12.1.1 |
+description: > |
+ `yield` is not a valid BindingIdentifier for AsyncGeneratorExpressions. |
+negative: |
+ phase: early |
+ type: SyntaxError |
+---*/ |
+ |
+(async function* yield() { }); |