TypeScript/tests/cases/compiler/blockScopedFunctionDeclarationInStrictModule.ts

8 lines
117 B
TypeScript

// @target: ES5
// @module: amd
if (true) {
function foo() { }
foo(); // ok
}
export = foo; // not ok