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