x /= x--

x = (x / x)--

x = (2 / 2)--

x = 0

The division takes place prior to the decrementing. Therefore, the effect is the equivalent of putting the division in parentheses.