TypeScript/tests/baselines/reference/inheritanceOfGenericConstructorMethod1.symbols
2015-04-15 16:44:20 -07:00

33 lines
1.6 KiB
Plaintext

=== tests/cases/compiler/inheritanceOfGenericConstructorMethod1.ts ===
class A<T> { }
>A : Symbol(A, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 0))
>T : Symbol(T, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 8))
class B<T> extends A<T> {}
>B : Symbol(B, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 14))
>T : Symbol(T, Decl(inheritanceOfGenericConstructorMethod1.ts, 1, 8))
>A : Symbol(A, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 0))
>T : Symbol(T, Decl(inheritanceOfGenericConstructorMethod1.ts, 1, 8))
var a = new A<Date>();
>a : Symbol(a, Decl(inheritanceOfGenericConstructorMethod1.ts, 2, 3))
>A : Symbol(A, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 0))
>Date : Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
var b1 = new B(); // no error
>b1 : Symbol(b1, Decl(inheritanceOfGenericConstructorMethod1.ts, 3, 3))
>B : Symbol(B, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 14))
var b2: B<Date> = new B<Date>(); // no error
>b2 : Symbol(b2, Decl(inheritanceOfGenericConstructorMethod1.ts, 4, 3))
>B : Symbol(B, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 14))
>Date : Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
>B : Symbol(B, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 14))
>Date : Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
var b3 = new B<Date>(); // error, could not select overload for 'new' expression
>b3 : Symbol(b3, Decl(inheritanceOfGenericConstructorMethod1.ts, 5, 3))
>B : Symbol(B, Decl(inheritanceOfGenericConstructorMethod1.ts, 0, 14))
>Date : Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))