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