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

8 lines
295 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/functionOverloads27.ts (1 errors) ====
function foo():string;
function foo(bar:string):number;
function foo(bar?:any):any{ return '' }
var x = foo(5);
~
!!! Argument type 'number' is not assignable to parameter type 'string'.
2014-07-13 01:04:16 +02:00