f91819ace7
So #KT-23377 Fixed
5 lines
190 B
Kotlin
Vendored
5 lines
190 B
Kotlin
Vendored
data class Test(val notnull: Boolean, val nullable: Boolean?)
|
|
|
|
fun test(a: Test, b: Test?) {
|
|
<caret>a.notnull == true || a.nullable == true || b?.notnull == true || b?.nullable == true
|
|
} |