Add one more test

This commit is contained in:
Jason Freeman 2015-03-02 13:53:59 -08:00
parent cb97686496
commit 7dd7b43448
3 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,5 @@
//// [for-of56.ts]
for (var let of []) {}
//// [for-of56.js]
for (var let of []) { }

View file

@ -0,0 +1,5 @@
=== tests/cases/conformance/es6/for-ofStatements/for-of56.ts ===
for (var let of []) {}
>let : any
>[] : undefined[]

View file

@ -0,0 +1,2 @@
//@target: ES6
for (var let of []) {}