Files
kotlin-fork/compiler/testData/codegen/box/safeCall/primitive.kt
T
2018-07-10 13:34:19 +03:00

9 lines
126 B
Kotlin
Vendored

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