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

46 lines
846 B
Plaintext

=== tests/cases/compiler/genericSpecializations1.ts ===
interface IFoo<T> {
>IFoo : IFoo<T>
>T : T
foo<T>(x: T): T; // no error on implementors because IFoo's T is different from foo's T
>foo : <T>(x: T) => T
>T : T
>x : T
>T : T
>T : T
}
class IntFooBad implements IFoo<number> {
>IntFooBad : IntFooBad
>IFoo : IFoo<T>
foo(x: string): string { return null; }
>foo : (x: string) => string
>x : string
>null : null
}
class StringFoo2 implements IFoo<string> {
>StringFoo2 : StringFoo2
>IFoo : IFoo<T>
foo(x: string): string { return null; }
>foo : (x: string) => string
>x : string
>null : null
}
class StringFoo3 implements IFoo<string> {
>StringFoo3 : StringFoo3
>IFoo : IFoo<T>
foo<T>(x: T): T { return null; }
>foo : <T>(x: T) => T
>T : T
>x : T
>T : T
>T : T
>null : null
}