```java String foo; Long.parseLong(foo = "123"); ``` is changed to the following code that doesn't compile anymore: ```java Long.parseLong(foo = "123"); ```