TypeScript/tests/baselines/reference/functionCall10.errors.txt
2014-09-12 13:35:07 -07:00

15 lines
663 B
Plaintext

tests/cases/compiler/functionCall10.ts(3,5): error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.
tests/cases/compiler/functionCall10.ts(5,8): error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.
==== 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'.