Files
babel/test/fixtures/traceur/Scope/NestedFunction3.js
Sebastian McKenzie 6a35bdb42b add traceur test suite
2015-01-04 19:40:09 +11:00

9 lines
194 B
JavaScript

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