TypeScript/tests/baselines/reference/ES5For-of1.errors.txt

9 lines
339 B
Plaintext
Raw Normal View History

tests/cases/conformance/statements/for-ofStatements/ES5For-of1.ts(2,5): error TS2304: Cannot find name 'console'.
2015-03-05 04:33:49 +01:00
==== tests/cases/conformance/statements/for-ofStatements/ES5For-of1.ts (1 errors) ====
2015-03-05 20:52:00 +01:00
for (var v of ['a', 'b', 'c']) {
console.log(v);
~~~~~~~
!!! error TS2304: Cannot find name 'console'.
2015-03-05 20:52:00 +01:00
}