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

10 lines
391 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/Expressions/parserPostfixPostfixExpression1.ts (4 errors) ====
a++ ++;
~~
!!! error TS1005: ';' expected.
2014-07-13 01:04:16 +02:00
~
!!! error TS1109: Expression expected.
2014-07-13 01:04:16 +02:00
~
!!! error TS2304: Cannot find name 'a'.
2014-07-13 01:04:16 +02:00
!!! error TS2357: The operand of an increment or decrement operator must be a variable, property or indexer.