Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
smartCasts
/
nullSmartCast.kt
blob: 1b74cbd9ea3b34f27878494b93beb2e81347426d [
file
]
fun
String
?.
foo
()
=
this
?:
"OK"
fun foo
(
i
:
Int
?):
String
{
if
(
i
==
null
)
return
i
.
foo
()
return
"$i"
}
fun box
()
=
foo
(
null
)