missing test data

This commit is contained in:
peter
2014-03-05 22:30:11 +01:00
parent 76591fdeca
commit ba09765e0a
@@ -0,0 +1,14 @@
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>);
}
}