TypeScript/tests/baselines/reference/functionOverloads29.errors.txt
2014-09-11 16:11:08 -07:00

8 lines
312 B
Plaintext

==== tests/cases/compiler/functionOverloads29.ts (1 errors) ====
function foo(bar:string):string;
function foo(bar:number):number;
function foo(bar:any):any{ return bar }
var x = foo();
~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.