TypeScript/tests/baselines/reference/ES3For-ofTypeCheck6.types

9 lines
229 B
Plaintext
Raw Normal View History

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