test262/test/language/statements/switch/syntax/redeclaration/var-name-redeclaration-atte...

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