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

8 lines
323 B
Plaintext
Raw Normal View History

tests/cases/compiler/assignmentToParenthesizedExpression1.ts(2,1): error TS2364: Invalid left-hand side of assignment expression.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/assignmentToParenthesizedExpression1.ts (1 errors) ====
var x;
(1, x)=0;
~~~~~~
!!! error TS2364: Invalid left-hand side of assignment expression.