Files
2023-06-30 09:01:00 +00:00

12 lines
260 B
Java

// "Remove redundant null-check" "true"
import java.util.*;
public class Test {
Test(int x) {
System.out.println(x);
}
public void test() {
Objects.requireNonNull(new <caret>Test(1)+":"+new Test(2)+":"+new Test(3+new Test(4).hashCode()));
}
}