TypeScript/tests/baselines/reference/restParamAsOptional.errors.txt
2014-07-12 17:30:19 -07:00

7 lines
258 B
Plaintext

==== 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.