TypeScript/tests/cases/compiler/blockScopedFunctionDeclarationES5.ts

6 lines
75 B
TypeScript

// @target: ES5
if (true) {
function foo() { }
foo();
}
foo();