blob: 62fc2c5741011794d88115b3b4dc0c67d2b4ccdc [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/declarations/class.case
// - src/declarations/redeclare/switch-attempt-to-redeclare-function-declaration.template
/*---
description: redeclaration with ClassDeclaration (FunctionDeclaration in SwitchStatement)
esid: sec-switch-statement-static-semantics-early-errors
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();
switch (0) { case 1: function f() {} default: class f {} }