TypeScript/tests/baselines/reference/derivedTypeIncompatibleSignatures.js

35 lines
671 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [derivedTypeIncompatibleSignatures.ts]
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
}
//// [derivedTypeIncompatibleSignatures.js]