summaryrefslogtreecommitdiff
path: root/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-const-declaration.template
blob: 0c9d092a8e0f63c40e403a7bf9035c5817c31b34 (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/const-declaration-attempt-to-
name: LexicalDeclaration (const) in BlockStatement
esid: sec-block-static-semantics-early-errors
info: |
  Block : { StatementList }

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

{ const f = 0; /*{ body }*/ }