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

6 lines
102 B
Java

// "Remove redundant assignment" "true-preview"
class X {
void test(boolean b) {
if (b) {}
}
}