fun a(): Int? { return 42 } val b: Int? = 2 fun c(p: Int?) { if (p == null); } fun check() { if (a() == null || b == null); }