Index: test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-formals-contains-await-expr.js |
diff --git a/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-formals-contains-await-expr.js b/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-formals-contains-await-expr.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1c94b75fc2aef6e72c00a5e23ad2a0e4d9cf8253 |
--- /dev/null |
+++ b/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-formals-contains-await-expr.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: pending |
+description: > |
+ It is a Syntax Error if FormalParameters Contains AwaitExpression is true. |
+negative: |
+ phase: early |
+ type: SyntaxError |
+---*/ |
+ |
+(async function*(x = await 1) { }); |