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

9 lines
320 B
Plaintext

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