TypeScript/tests/baselines/reference/ES5For-of14.types

10 lines
288 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of14.ts ===
for (const v of []) {
2015-04-13 23:01:57 +02:00
>v : any, Symbol(v, Decl(ES5For-of14.ts, 0, 10))
>[] : undefined[]
var x = v;
2015-04-13 23:01:57 +02:00
>x : any, Symbol(x, Decl(ES5For-of14.ts, 1, 7))
>v : any, Symbol(v, Decl(ES5For-of14.ts, 0, 10))
}