blob: 96bc5a56ced097fc8b6a304c4fdf7ef988815cfd [file] [log] [blame]
data class Test(val notnull: Boolean, val nullable: Boolean?)
fun test(a: Test, b: Test?) {
a.notnull || a.nullable == true || b?.notnull == true || b?.nullable == true
}