mirror of https://github.com/tc39/test262.git
21 lines
438 B
JavaScript
21 lines
438 B
JavaScript
// 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: >
|
|
catch parameter shadowing let declaration
|
|
---*/
|
|
{
|
|
let a = 3;
|
|
try {
|
|
throw 'stuff2';
|
|
} catch (a) {
|
|
assert.sameValue(a, 'stuff2');
|
|
// catch parameter shadowing let declaration
|
|
a = 4;
|
|
assert.sameValue(a, 4);
|
|
}
|
|
assert.sameValue(a, 3);
|
|
}
|
|
|