Files
ValueScript/inputs/passing/destructuring/decl/deeply_nested.ts

8 lines
144 B
TypeScript

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