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