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

10 lines
169 B
Plaintext

=== tests/cases/conformance/statements/for-ofStatements/ES5For-of14.ts ===
for (const v of []) {
>v : any
>[] : undefined[]
var x = v;
>x : any
>v : any
}