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

10 lines
367 B
Plaintext

tests/cases/compiler/nonArrayRestArgs.ts(1,14): error TS2370: A rest parameter must be of an array type.
==== tests/cases/compiler/nonArrayRestArgs.ts (1 errors) ====
function foo(...rest: number) { // error
~~~~~~~~~~~~~~~
!!! error TS2370: A rest parameter must be of an array type.
var x: string = rest[0];
return x;
}