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