mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
22 lines
471 B
Java
22 lines
471 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Test {
|
|
void f(@Nullable final Object x) {
|
|
if (x != null) {
|
|
class C {
|
|
C(@NotNull Object x) {
|
|
}
|
|
|
|
C() {
|
|
this(x);
|
|
}
|
|
}
|
|
}
|
|
class Local {
|
|
void s(@Nullable String s) {
|
|
final int i = s.<warning descr="Method invocation 'hashCode' may produce 'NullPointerException'">hashCode</warning>();
|
|
}
|
|
}
|
|
}
|
|
} |