TypeScript/tests/baselines/reference/ES5For-of3.types
2016-09-01 14:25:44 -07:00

13 lines
231 B
Plaintext

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