| // Copyright (C) 2017 André Bargull. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| |
| /*--- |
| path: language/block-scope/syntax/redeclaration/async-function-name-redeclaration-attempt-with- |
| name: AsyncFunctionDeclaration in BlockStatement |
| esid: sec-block-static-semantics-early-errors |
| info: | |
| Block : { StatementList } |
| |
| It is a Syntax Error if the LexicallyDeclaredNames of StatementList contains |
| any duplicate entries. |
| negative: |
| phase: parse |
| type: SyntaxError |
| features: [async-functions] |
| ---*/ |
| |
| $DONOTEVALUATE(); |
| |
| { async function f() {} /*{ body }*/ } |