TypeScript/tests/baselines/reference/assignmentToParenthesizedExpression1.js

8 lines
137 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [assignmentToParenthesizedExpression1.ts]
var x;
(1, x)=0;
//// [assignmentToParenthesizedExpression1.js]
var x;
(1, x) = 0;