TypeScript/tests/cases/compiler/implementGenericWithMismatchedTypes.ts

20 lines
492 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// no errors because in the derived types the best common type for T's value is Object
// and that matches the original signature for assignability since we treat its T's as Object
interface IFoo<T> {
foo(x: T): T;
}
class C<T> implements IFoo<T> { // error
foo(x: string): number {
return null;
}
}
interface IFoo2<T> {
foo(x: T): T;
}
class C2<T> implements IFoo2<T> { // error
foo<Tstring>(x: Tstring): number {
return null;
}
}