TypeScript/tests/cases/compiler/declarationEmit_bindingPatterns.ts
2016-02-25 13:14:34 -08:00

7 lines
No EOL
117 B
TypeScript

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