TypeScript/tests/baselines/reference/callSignaturesThatDifferOnlyByReturnType3.js

22 lines
466 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [callSignaturesThatDifferOnlyByReturnType3.ts]
// Normally it is an error to have multiple overloads with identical signatures in a single type declaration.
// Here the multiple overloads come from multiple merged declarations.
interface I {
(x: string): string;
}
interface I {
(x: string): number;
}
interface I2<T> {
(x: string): string;
}
interface I2<T> {
(x: string): number;
}
//// [callSignaturesThatDifferOnlyByReturnType3.js]