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

6 lines
79 B
TypeScript

for (let v of []) {
v;
for (const v of []) {
var x = v;
}
}