swc/crates/swc_ecma_parser/tests/tsc/objectSpreadNoTransform.ts

7 lines
122 B
TypeScript

// @target: esnext
const y = { a: 'yes', b: 'no' };
const o = { x: 1, ...y };
var b;
var rest: any;
({ b, ...rest } = o);