Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
smartCasts
/
nullSmartCast.kt
blob: 9f1935c78515fa780d3710c1e84bee25f9860a46 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
fun
String
?.
foo
()
=
this
?:
"OK"
fun foo
(
i
:
Int
?):
String
{
if
(
i
==
null
)
return
i
.
foo
()
return
"$i"
}
fun box
()
=
foo
(
null
)