TypeScript/tests/cases/compiler/declarationEmitDestructuring3.ts

5 lines
108 B
TypeScript
Raw Normal View History

2015-03-24 01:58:53 +01:00
// @declaration: true
function bar([x, z, ...w]) { }
function foo([x, ...y] = [1, "string", true]) { }