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

6 lines
72 B
TypeScript

//@sourcemap: true
var a = [1, 2, 3];
for (var v of a) {
v;
a;
}