TypeScript/tests/baselines/reference/functionOverloads12.types
2014-08-15 14:37:48 -07:00

11 lines
274 B
Plaintext

=== tests/cases/compiler/functionOverloads12.ts ===
function foo():string;
>foo : { (): string; (): number; }
function foo():number;
>foo : { (): string; (): number; }
function foo():any { if (true) return ""; else return 0;}
>foo : { (): string; (): number; }