Files
ValueScript/inputs/passing/destructuring/decl/deeply_nested.ts
2023-03-01 12:35:11 +11:00

8 lines
142 B
TypeScript

// test_ouput! 42
export default function main() {
const [[[{ x: { y: [[{ z }]] } }]]] = [[[{ x: { y: [[{ z: 42 }]] } }]]];
return z;
}