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

9 lines
111 B
TypeScript

for (let v of []) {
v;
function foo() {
for (const v of []) {
v;
}
}
}