TypeScript/tests/baselines/reference/for-of1.types

9 lines
205 B
Plaintext
Raw Normal View History

2015-02-20 21:22:32 +01:00
=== tests/cases/conformance/es6/for-ofStatements/for-of1.ts ===
var v;
2015-04-13 23:01:57 +02:00
>v : any, Symbol(v, Decl(for-of1.ts, 0, 3))
2015-02-20 21:22:32 +01:00
for (v of []) { }
2015-04-13 23:01:57 +02:00
>v : any, Symbol(v, Decl(for-of1.ts, 0, 3))
2015-02-20 21:22:32 +01:00
>[] : undefined[]