mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 21:48:01 +07:00
10 lines
229 B
Java
10 lines
229 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class Npe {
|
|
void bar() {
|
|
final @NotNull Object o = call();
|
|
if (o == null) {}
|
|
}
|
|
Object call() {return new Object();}
|
|
} |