TypeScript/tests/cases/compiler/blockScopedFunctionDeclarationInStrictClass.ts

10 lines
168 B
TypeScript

// @target: ES5
class c {
method() {
if (true) {
function foo() { }
foo(); // ok
}
foo(); // not ok
}
}