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

18 lines
275 B
Plaintext

=== tests/cases/compiler/specializationOfExportedClass.ts ===
module M {
>M : typeof M
export class C<T> { }
>C : C<T>
>T : T
}
var x = new M.C<string>();
>x : M.C<string>
>new M.C<string>() : M.C<string>
>M.C : typeof M.C
>M : typeof M
>C : typeof M.C