summaryrefslogtreecommitdiff
path: root/src/declarations/redeclare-allow-sloppy-function/block-attempt-to-redeclare-function-declaration.template
blob: 32d3b9d74d68946a168ec640d12ba20b7c4bd567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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/function-declaration-attempt-to-
name: FunctionDeclaration 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
flags: [onlyStrict]
---*/

throw "Test262: This statement should not be evaluated.";

{ function f() {} /*{ body }*/ }