Files
kotlin-fork/compiler/testData/codegen/box/safeCall/kt3430.kt
T
2019-11-19 11:00:09 +03:00

7 lines
132 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
fun f(b : Int.(Int)->Int) = 1?.b(1)
fun box(): String {
val x = f { this + it }
return "OK"
}