Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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"
}