DEBSOURCES
Skip Quicknav
sources / node-typescript / 5.0.4%2Bds1-2 / tests / cases / compiler / nestedObjectRest.ts
1234567
// @target: es2017 // https://github.com/microsoft/TypeScript/issues/43400 var x, y; [{ ...x }] = [{ abc: 1 }]; for ([{ ...y }] of [[{ abc: 1 }]]) ;