Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b70a070b7f30504e58544aeb665e26fe5df3182d
/
.
/
compiler
/
testData
/
codegen
/
box
/
safeCall
/
primitive.kt
blob: 64decc4e76be30aa8dbbb9e95015aa194986a779 [
file
]
fun
Int
.
foo
()
=
239
fun
Long
.
bar
()
=
239.toLong
()
fun box
():
String
{
42
?.
foo
()
42.toLong
()?.
bar
()
return
"OK"
}