swc/crates/swc_ecma_parser/tests/tsc/restElementWithNullInitializer.ts

12 lines
136 B
TypeScript

function foo1([...r] = null) {
}
function foo2([...r] = undefined) {
}
function foo3([...r] = {}) {
}
function foo4([...r] = []) {
}