summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/block-scope/shadowing/let-declaration-shadowing-catch-parameter.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/block-scope/shadowing/let-declaration-shadowing-catch-parameter.js')
-rw-r--r--js/src/tests/test262/language/block-scope/shadowing/let-declaration-shadowing-catch-parameter.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/block-scope/shadowing/let-declaration-shadowing-catch-parameter.js b/js/src/tests/test262/language/block-scope/shadowing/let-declaration-shadowing-catch-parameter.js
new file mode 100644
index 0000000000..cbe153281f
--- /dev/null
+++ b/js/src/tests/test262/language/block-scope/shadowing/let-declaration-shadowing-catch-parameter.js
@@ -0,0 +1,20 @@
+// Copyright (C) 2011 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 13.1
+description: >
+ let declaration shadowing catch parameter
+---*/
+try {
+ throw 'stuff1';
+} catch (a) {
+ {
+ // let declaration shadowing catch parameter
+ let a = 3;
+ assert.sameValue(a, 3);
+ }
+ assert.sameValue(a, 'stuff1');
+}
+
+
+reportCompare(0, 0);