2018-01-09 15:36:42 +01:00

5 lines
88 B
JavaScript

// #3861
function t(x = "default", { a, b }, ...args) {
console.log(x, a, b, args);
}