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