TypeScript/tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck11.ts
2015-03-11 16:34:18 -07:00

4 lines
No EOL
83 B
TypeScript

//@target: ES5
var union: string | number[];
var v: string;
for (v of union) { }