TypeScript/tests/cases/compiler/derivedTypeIncompatibleSignatures.ts
2014-07-12 17:30:19 -07:00

31 lines
607 B
TypeScript

interface A {
(a: string): string;
}
interface B extends A {
(a: string): number; // Number is not a subtype of string. Should error.
}
interface C {
new (a: string): string;
}
interface D extends C {
new (a: string): number; // Number is not a subtype of string. Should error.
}
interface E {
[a: string]: string;
}
interface F extends E {
[a: string]: number; // Number is not a subtype of string. Should error.
}
interface G {
[a: number]: string;
}
interface H extends G {
[a: number]: number; // Should error for the same reason
}