mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +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);
|