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

24 lines
649 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/class.case
// - src/declarations/redeclare/block-attempt-to-redeclare-async-generator-declaration.template
/*---
description: redeclaration with ClassDeclaration (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 the LexicallyDeclaredNames of StatementList contains
any duplicate entries.
---*/
$DONOTEVALUATE();
2017-04-29 22:22:24 +02:00
2018-12-18 18:01:19 +01:00
{ async function* f() {} class f {} }