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

10 lines
226 B
Java

// "Remove redundant assignment" "true-preview"
class Foo {
void bar(int begin) {
int current;
int sent = begin - 1;
current = Math.abs(begin);
System.out.println(sent);
System.out.println(current);
}
}