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

7 lines
243 B
Plaintext
Raw Normal View History

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