summaryrefslogtreecommitdiff
path: root/src/declarations/redeclare-allow-var/switch-attempt-to-redeclare-async-generator-declaration.template
blob: 7c049c54de06f9fec4ee0086ccca65d33afb40c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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/async-generator-declaration-attempt-to-
name: AsyncGeneratorDeclaration in SwitchStatement
esid: sec-switch-statement-static-semantics-early-errors
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.
negative:
  phase: early
  type: SyntaxError
features: [async-iteration]
---*/

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