Files
kotlin-fork/compiler/testData/codegen/box/safeCall/kt3430.kt
T
2020-03-04 16:55:33 +03:00

6 lines
102 B
Kotlin
Vendored

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