blob: a4b66f2dd6bb810258ce33e0f2ef8822bc45aa4b [file] [log] [blame]
import org.checkerframework.checker.nullness.qual.*;
public class ConditionalOr {
void test(@Nullable Object o) {
if (o == null || o.toString() == "...") {
// ...
}
}
}