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

11 lines
389 B
Plaintext

==== tests/cases/compiler/functionCall10.ts (2 errors) ====
function foo(...a:number[]){};
foo(0, 1);
foo('foo');
~~~~~
!!! error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.
foo();
foo(1, 'bar');
~~~~~
!!! error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.