swc/crates/swc_ecma_parser/tests/tsc/restElementWithAssignmentPattern3.ts

3 lines
89 B
TypeScript

var a: string, b: number;
var tuple: [string, number] = ["", 1];
[...[a, b = 0]] = tuple;