Files
kotlin-fork/backend.native/tests/external/codegen/box/safeCall/primitive.kt
T
2017-03-13 15:31:46 +03:00

9 lines
126 B
Kotlin

fun Int.foo() = 239
fun Long.bar() = 239.toLong()
fun box(): String {
42?.foo()
42.toLong()?.bar()
return "OK"
}