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

14 lines
237 B
Plaintext
Raw Normal View History

2015-02-21 03:00:03 +01:00
=== tests/cases/conformance/es6/for-ofStatements/for-of9.ts ===
var v: string;
>v : string
2015-02-21 03:00:03 +01:00
for (v of ["hello"]) { }
>v : string
2015-02-21 03:00:03 +01:00
>["hello"] : string[]
2015-04-13 21:36:11 +02:00
>"hello" : string
2015-02-21 03:00:03 +01:00
for (v of "hello") { }
>v : string
2015-04-13 21:36:11 +02:00
>"hello" : string
2015-02-21 03:00:03 +01:00