TypeScript/tests/baselines/reference/ES5For-ofTypeCheck7.errors.txt
2015-03-11 16:34:18 -07:00

8 lines
375 B
Plaintext

tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck7.ts(2,15): error TS2461: Type 'number' is not an array type.
==== tests/cases/conformance/statements/for-ofStatements/ES5For-ofTypeCheck7.ts (1 errors) ====
var union: string | number;
for (var v of union) { }
~~~~~
!!! error TS2461: Type 'number' is not an array type.