fun foo() { var a: Boolean? = null var b: Boolean? = null if (a ?: false || !(b ?: true)) { } }