mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 22:09:57 +07:00
10 lines
270 B
Java
10 lines
270 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class DDD {
|
|
@Nullable
|
|
String field;
|
|
int test() {
|
|
return <warning descr="Method invocation 'new DDD().field.hashCode()' may produce 'java.lang.NullPointerException'">new DDD().field.hashCode()</warning>;
|
|
}
|
|
}
|