swc/crates/swc_ecma_parser/tests/tsc/ES5For-of31.ts

6 lines
79 B
TypeScript

var a: string, b: number;
for ({ a: b = 1, b: a = ""} of []) {
a;
b;
}