babel/test/fixtures/traceur/Scope/DeepNestedLetConst.js
2015-01-04 19:40:09 +11:00

15 lines
218 B
JavaScript

// Options: --block-binding
var a = 'var a';
{
var b = 'var b';
{
let c = 'let c';
{
const d = 'const d';
}
}
}
// ----------------------------------------------------------------------------