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.