TypeScript/tests/baselines/reference/restParamAsOptional.js
2015-02-06 18:45:09 -08:00

8 lines
151 B
JavaScript

//// [restParamAsOptional.ts]
function f(...x?) { }
function f2(...x = []) { }
//// [restParamAsOptional.js]
function f() { }
function f2() { }