The following multiple assignment is incorrectly translated: ``` col, end = end, col ``` This currently generates the following Java: ``` { col = end; end = col; } ``` This is clearly not the intended semantic.
The following multiple assignment is incorrectly translated:
This currently generates the following Java:
This is clearly not the intended semantic.