babel/test/fixtures/traceur/Rest/Error_NotLast.js
2015-01-04 19:40:09 +11:00

6 lines
180 B
JavaScript

// Error: :3:46: Unexpected token ,
function invalidParam(noDefault, ...restParam, noRestAgain) {
// Should fail to parse since non rest param is not allowed after
// param.
}