blob: c933f5baead4db3a7cce38a1a2b4ff93dbfa7c2b [file] [log] [blame]
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();}
}