blob: 820ac0904f325312c6b4abe4731cd18e579bd52d [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
public class Npe {
Object foo(@NotNull Object o) {
if (o == null) {
// Should not get there.
}
return o;
}
}