mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
5 lines
142 B
TypeScript
5 lines
142 B
TypeScript
// @target: es5, es2015, es2018
|
|
// @noTypesAndSymbols: true
|
|
let a: any, b: any, c: any = {x: {a: 1, y: 2}}, d: any;
|
|
({x: {a, ...b} = d} = c);
|