| Index: test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-formals-body-duplicate-const.js
 | 
| diff --git a/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-formals-body-duplicate-const.js b/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-formals-body-duplicate-const.js
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..53e3a2365a6434a784e37b2e70b0f51f4e01e7fb
 | 
| --- /dev/null
 | 
| +++ b/test/test262/local-tests/test/language/expressions/async-generators/early-errors-expression-formals-body-duplicate-const.js
 | 
| @@ -0,0 +1,15 @@
 | 
| +// 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 SyntaxError if BoundNames of FormalParameters also occurs in the
 | 
| +  LexicallyDeclaredNames of AsyncFunctionBody
 | 
| +negative:
 | 
| +  phase: early
 | 
| +  type: SyntaxError
 | 
| +---*/
 | 
| +
 | 
| +(async function*(a) { const a = 0; });
 | 
| 
 |