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

9 lines
370 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList9.ts(2,14): error TS1047: A rest parameter cannot be optional.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList9.ts (1 errors) ====
class C {
foo(...bar?) { }
~
!!! error TS1047: A rest parameter cannot be optional.
2014-07-13 01:04:16 +02:00
}