blob: 94d5b6b72c5300a291f5e89d8041b68cb87edc89 [file]
// WITH_STDLIB
import kotlin.test.*
fun box(): String {
val x = foo {
it + 1
}
assertEquals(43, x)
return "OK"
}
fun foo(f: (Int) -> Int) = f(42)