DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / letInConstDeclarations_ES5.ts
12345678
// @target: es5 // All use of let in const declaration should be an error const x = 50, let = 5; { const x = 10, let = 20; }