TypeScript/tests/baselines/reference/recursiveBaseConstructorCreation1.types
2014-08-15 14:37:48 -07:00

19 lines
297 B
Plaintext

=== tests/cases/compiler/recursiveBaseConstructorCreation1.ts ===
class C1 {
>C1 : C1
public func(param: C2): any { }
>func : (param: C2) => any
>param : C2
>C2 : C2
}
class C2 extends C1 { }
>C2 : C2
>C1 : C1
var x = new C2(); // Valid
>x : C2
>new C2() : C2
>C2 : typeof C2