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

8 lines
301 B
Plaintext
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);
~
2014-07-25 04:39:50 +02:00
!!! Argument of type 'number' is not assignable to parameter of type 'string'.
2014-07-13 01:04:16 +02:00