mirror of https://github.com/tc39/test262.git
21 lines
670 B
JavaScript
21 lines
670 B
JavaScript
|
// This file was procedurally generated from the following sources:
|
||
|
// - src/declarations/redeclare-with-let-declaration.case
|
||
|
// - src/declarations/redeclare/switch-attempt-to-redeclare-function-declaration.template
|
||
|
/*---
|
||
|
description: redeclaration with let-LexicalDeclaration (FunctionDeclaration in SwitchStatement)
|
||
|
esid: sec-switch-statement-static-semantics-early-errors
|
||
|
flags: [generated]
|
||
|
negative:
|
||
|
phase: early
|
||
|
type: SyntaxError
|
||
|
info: |
|
||
|
SwitchStatement : switch ( Expression ) CaseBlock
|
||
|
|
||
|
It is a Syntax Error if the LexicallyDeclaredNames of CaseBlock contains any
|
||
|
duplicate entries.
|
||
|
|
||
|
---*/
|
||
|
|
||
|
|
||
|
switch (0) { case 1: function f() {} default: let f; }
|