TypeScript/tests/baselines/reference/parserES5ForOfStatement13.errors.txt
2015-02-18 11:35:36 -08:00

11 lines
718 B
Plaintext

tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement13.ts(1,1): error TS2482: For-of statements are only available when targeting ECMAScript 6 or higher
tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement13.ts(1,6): error TS1153: 'let' declarations are only available when targeting ECMAScript 6 and higher.
==== tests/cases/conformance/parser/ecmascript5/Statements/parserES5ForOfStatement13.ts (2 errors) ====
for (let {a, b} of X) {
~~~
!!! error TS2482: For-of statements are only available when targeting ECMAScript 6 or higher
~~~
!!! error TS1153: 'let' declarations are only available when targeting ECMAScript 6 and higher.
}