Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
simplifyBooleanWithConstants
/
nullableComplex2.kt.after
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
}