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