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

12 lines
198 B
TypeScript

//@target: ES6
class StringIterator {
next() {
return "";
}
[Symbol.iterator]() {
return this;
}
}
var v: string;
for (v of new StringIterator) { } // Should fail