Files
openide/java/java-tests/testData/inspection/dataFlow/fixture/NullabilityDefaultVsMethodImplementing.java

10 lines
227 B
Java

interface UnknownInterface {
void foo(String s);
}
@javax.annotation.ParametersAreNonnullByDefault
class ImplWithNotNull implements UnknownInterface {
public void foo(String s) {
System.out.println(s.hashCode());
}
}