swc/crates/swc_ecma_parser/tests/tsc/for-of9.ts

4 lines
77 B
TypeScript

//@target: ES6
var v: string;
for (v of ["hello"]) { }
for (v of "hello") { }