TypeScript/tests/baselines/reference/parserPostfixUnaryExpression1.errors.txt

13 lines
671 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/Expressions/parserPostfixUnaryExpression1.ts(1,1): error TS2304: Cannot find name 'foo'.
tests/cases/conformance/parser/ecmascript5/Expressions/parserPostfixUnaryExpression1.ts(1,8): error TS1005: ';' expected.
tests/cases/conformance/parser/ecmascript5/Expressions/parserPostfixUnaryExpression1.ts(1,10): error TS1109: Expression expected.
2014-12-02 01:17:04 +01:00
==== tests/cases/conformance/parser/ecmascript5/Expressions/parserPostfixUnaryExpression1.ts (3 errors) ====
2014-07-13 01:04:16 +02:00
foo ++ ++;
~~~
!!! error TS2304: Cannot find name 'foo'.
2014-07-13 01:04:16 +02:00
~~
!!! error TS1005: ';' expected.
2014-07-13 01:04:16 +02:00
~
!!! error TS1109: Expression expected.