test262/test/language/statements/switch/syntax/redeclaration/async-generator-name-redecl...

24 lines
755 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/async-function.case
// - src/declarations/redeclare/switch-attempt-to-redeclare-async-generator-declaration.template
/*---
description: redeclaration with AsyncFunctionDeclaration (AsyncGeneratorDeclaration in SwitchStatement)
esid: sec-switch-statement-static-semantics-early-errors
2017-05-16 23:32:25 +02:00
features: [async-functions, async-iteration]
flags: [generated]
negative:
phase: parse
type: SyntaxError
info: |
SwitchStatement : switch ( Expression ) CaseBlock
It is a Syntax Error if the LexicallyDeclaredNames of CaseBlock contains any
duplicate entries.
---*/
$DONOTEVALUATE();
2017-04-29 22:22:24 +02:00
switch (0) { case 1: async function* f() {} default: async function f() {} }