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

13 lines
244 B
Plaintext

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of13.ts ===
for (let v of ['a', 'b', 'c']) {
>v : string
>['a', 'b', 'c'] : string[]
>'a' : string
>'b' : string
>'c' : string
var x = v;
>x : string
>v : string
}