summaryrefslogtreecommitdiff
path: root/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-var-declaration.template
blob: 50f548934ef7e83ec132ce560c0b5ce6c20b3c29 (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/block-scope/syntax/redeclaration/var-declaration-attempt-to-
name: VariableDeclaration in BlockStatement
esid: sec-block-static-semantics-early-errors
info: |
  Block : { StatementList }

  It is a Syntax Error if any element of the LexicallyDeclaredNames of
  StatementList also occurs in the VarDeclaredNames of StatementList.
negative:
  phase: early
  type: SyntaxError
---*/

{ var f; /*{ body }*/ }