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

8 lines
293 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList10.ts (2 errors) ====
class C {
foo(...bar = 0) { }
~~~
!!! A rest parameter cannot have an initializer.
~~~~~~~~~~
!!! A rest parameter must be of an array type.
}