TypeScript/tests/baselines/reference/callSignaturesThatDifferOnlyByReturnType3.js

24 lines
649 B
TypeScript

//// [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]
// 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.