Files
kotlin/compiler/testData/codegen/box/safeCall/primitive.kt
2013-02-06 17:54:30 +04: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"
}