test262/test/language/block-scope/syntax/redeclaration/async-generator-name-redecl...

24 lines
692 B
JavaScript
Raw Normal View History

// This file was procedurally generated from the following sources:
2018-12-18 18:01:19 +01:00
// - src/declarations/var.case
// - src/declarations/redeclare-allow-var/block-attempt-to-redeclare-async-generator-declaration.template
/*---
description: redeclaration with VariableDeclaration (AsyncGeneratorDeclaration in BlockStatement)
esid: sec-block-static-semantics-early-errors
2017-05-16 23:32:25 +02:00
features: [async-iteration]
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.
---*/
$DONOTEVALUATE();
2017-04-29 22:22:24 +02:00
2018-12-18 18:01:19 +01:00
{ async function* f() {} var f }