TypeScript/tests/cases/compiler/classDeclarationCheckUsedBeforeDefinitionInFunctionDeclaration.ts
Kanchalai Tanglertsampan a8ffb5cad9 Address code review
2017-03-21 07:26:47 -07:00

4 lines
56 B
TypeScript

function f() {
new C2(); // OK
}
class C2 { }