TypeScript/tests/baselines/reference/ES5For-ofTypeCheck5.symbols
2015-04-15 16:44:20 -07:00

9 lines
317 B
Plaintext

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