TypeScript/tests/baselines/reference/for-of3.errors.txt

8 lines
323 B
Plaintext
Raw Normal View History

2015-02-21 03:00:03 +01:00
tests/cases/conformance/es6/for-ofStatements/for-of3.ts(2,6): error TS2487: Invalid left-hand side in 'for...of' statement.
2015-02-20 21:22:32 +01:00
==== tests/cases/conformance/es6/for-ofStatements/for-of3.ts (1 errors) ====
var v;
for (v++ of []) { }
~~~
2015-02-21 03:00:03 +01:00
!!! error TS2487: Invalid left-hand side in 'for...of' statement.