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

7 lines
258 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/restParamAsOptional.ts (2 errors) ====
function f(...x?) { }
~
!!! A rest parameter cannot be optional.
function f2(...x = []) { }
~
!!! A rest parameter cannot have an initializer.