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

10 lines
367 B
Plaintext
Raw Normal View History

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