TypeScript/tests/cases/compiler/blockScopedFunctionDeclarationES5.ts

6 lines
75 B
TypeScript
Raw Normal View History

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