Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
nullCheckOptimization
/
ifUnitEqualsNull.kt
blob: 44408837217809e685bf2c215b887396a92a7da9 [
file
]
fun test1
()
{
val a
=
Unit
if
(
a
!=
null
)
{
println
(
"X1"
)
}
if
(
a
==
null
)
{
println
(
"X2"
)
}
}
// 0 IFNULL
// 0 IFNONNULL
// 1 X1
// 0 X2