summaryrefslogtreecommitdiff
path: root/src/declarations/redeclare-allow-sloppy-function/switch-attempt-to-redeclare-generator-declaration.template
blob: 5fb499613fa7e41a5fb12e7dc9a685a1bfabe411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2017 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
path: language/statements/switch/syntax/redeclaration/generator-declaration-attempt-to-
name: GeneratorDeclaration in SwitchStatement
esid: sec-switch-statement-static-semantics-early-errors
info: |
  SwitchStatement : switch ( Expression ) CaseBlock

  It is a Syntax Error if the LexicallyDeclaredNames of CaseBlock contains any
  duplicate entries.
negative:
  phase: early
  type: SyntaxError
---*/

switch (0) { case 1: function* f() {} default: /*{ body }*/ }