TypeScript/tests/cases/compiler/declarationEmitDestructuring3.ts
2015-03-23 17:58:53 -07:00

5 lines
108 B
TypeScript

// @declaration: true
function bar([x, z, ...w]) { }
function foo([x, ...y] = [1, "string", true]) { }