summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration-nested-in-function.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration-nested-in-function.js')
-rw-r--r--js/src/tests/test262/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration-nested-in-function.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration-nested-in-function.js b/js/src/tests/test262/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration-nested-in-function.js
new file mode 100644
index 0000000000..3c72d3aeb1
--- /dev/null
+++ b/js/src/tests/test262/language/block-scope/syntax/redeclaration/function-declaration-attempt-to-redeclare-with-var-declaration-nested-in-function.js
@@ -0,0 +1,32 @@
+// |reftest| error:SyntaxError
+// Copyright (C) 2018 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-block-static-semantics-early-errors
+description: >
+ Redeclaration with VariableDeclaration (FunctionDeclaration in BlockStatement)
+info: |
+ 13.2.1 Static Semantics: Early Errors
+
+ It is a Syntax Error if any element of the LexicallyDeclaredNames of
+ StatementList also occurs in the VarDeclaredNames of StatementList.
+negative:
+ phase: parse
+ type: SyntaxError
+---*/
+
+$DONOTEVALUATE();
+
+function g() {
+ // Create an outer block-statement.
+ {
+ // A lexically declared function declaration.
+ function f() {}
+
+ // An inner block-statement with a variable-declared name.
+ {
+ var f;
+ }
+ }
+}