TypeScript/tests/baselines/reference/callSignaturesThatDifferOnlyByReturnType3.js
2014-07-12 17:30:19 -07:00

22 lines
466 B
JavaScript

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