early-catch-lex.js (507B)
1 // |reftest| error:SyntaxError 2 // Copyright (C) 2016 the V8 project authors. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 /*--- 5 esid: sec-try-statement-static-semantics-early-errors 6 es6id: 13.15.1 7 description: > 8 It is a Syntax Error if any element of the BoundNames of CatchParameter 9 also occurs in the LexicallyDeclaredNames of Block. 10 negative: 11 phase: parse 12 type: SyntaxError 13 features: [let] 14 ---*/ 15 16 $DONOTEVALUATE(); 17 18 try { } catch (x) { let x; }