blob: 0553b5309fcf5436d526ebf976598ab73bf3be4b [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
public class Npe {
@NotNull Object foo() {
return new Object();
}
void bar() {
Object o = foo();
if (o == null) System.out.println("Can't be");
}
}