TypeScript/tests/cases/compiler/declarationEmitBindingPatterns.ts
2016-09-15 08:59:14 -07:00

7 lines
117 B
TypeScript

// @declaration: true
const k = ({x: z = 'y'}) => { }
var a;
function f({} = a, [] = a, { p: {} = a} = a) {
}