test262/test/language/block-scope/syntax/redeclaration/async-function-declaration-...

24 lines
757 B
JavaScript
Raw Normal View History

// This file was procedurally generated from the following sources:
// - src/declarations/redeclare-with-var-declaration.case
// - src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-function-declaration.template
/*---
description: redeclaration with VariableDeclaration (AsyncFunctionDeclaration in BlockStatement)
esid: sec-block-static-semantics-early-errors
2017-05-16 23:32:25 +02:00
features: [async-functions]
flags: [generated]
negative:
phase: parse
type: SyntaxError
info: |
Block : { StatementList }
It is a Syntax Error if any element of the LexicallyDeclaredNames of
StatementList also occurs in the VarDeclaredNames of StatementList.
---*/
2017-04-29 22:22:24 +02:00
throw "Test262: This statement should not be evaluated.";
{ async function f() {} var f; }