blob: 288cc07a51b15737f44980d8847765829c2284e9 [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
class Doo {
@Nullable
Object getMethod() {
return null;
}
public void main(String[] args) {
Object method = getMethod();
System.out.println(<warning descr="Method invocation 'getMethod().hashCode()' may produce 'java.lang.NullPointerException'">getMethod().hashCode()</warning>);
}
}