TypeScript/tests/baselines/reference/functionOverloads29.errors.txt

8 lines
298 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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();
~~~~~
!!! Supplied parameters do not match any signature of call target.