Files
2022-07-29 17:55:14 +00:00

9 lines
163 B
Java

// "Remove redundant assignment" "true-preview"
class A {
void m() {
int i;
<caret>i = 9;
i = 0;
System.out.println(i);
}
}