10 lines
192 B
JavaScript

// Options: --block-binding
function nestedFunction1() {
return function() {
let let_x = 'let x';
}
}
// ----------------------------------------------------------------------------