TypeScript/tests/baselines/reference/restParameterNotLast.js
2016-04-12 16:25:19 -07:00

6 lines
110 B
TypeScript

//// [restParameterNotLast.ts]
function f(...x, y) { }
//// [restParameterNotLast.js]
function f(y) { }