TypeScript/tests/baselines/reference/forInStatement7.errors.txt
2014-09-12 13:35:07 -07:00

10 lines
386 B
Plaintext

tests/cases/compiler/forInStatement7.ts(3,6): error TS2405: The left-hand side of a 'for...in' statement must be of type 'string' or 'any'.
==== tests/cases/compiler/forInStatement7.ts (1 errors) ====
var a: number;
var expr: any;
for (a in expr) {
~
!!! error TS2405: The left-hand side of a 'for...in' statement must be of type 'string' or 'any'.
}