DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / blockScopedFunctionDeclarationInStrictClass.ts
12345678910
// @target: ES5 class c { method() { if (true) { function foo() { } foo(); // ok } foo(); // not ok } }