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