TypeScript/tests/baselines/reference/ES5For-ofTypeCheck5.types

9 lines
223 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck5.ts ===
var union: string | number[];
>union : string | number[]
for (var v of union) { }
>v : string | number
>union : string | number[]