Files
kotlin-fork/compiler/testData/codegen/box/safeCall/primitive.kt
T
2018-06-09 19:15:38 +03:00

10 lines
151 B
Kotlin
Vendored

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