blob: 4449c9caee70025c534be4c135ebd1cf18ea88a0 [file] [log] [blame]
// "Remove redundant assignment" "true"
class A {
public static void main(String[] args) {
int x = (<caret>x = 3) * 4;
System.out.println(x);
}
}