blob: 6d4a3fcf0c3cc872974dc918e256bd41848b8f0c [file]
// WITH_STDLIB
// NO_CHECK_LAMBDA_INLINING
// FILE: lib.kt
import kotlin.test.*
inline fun call(block1: () -> Unit, noinline block2: () -> Int): Int {
block1()
return block2()
}
// FILE: main.kt
import kotlin.test.*
fun box(): String {
var x = 5
assertEquals(5, call({ x = 7 }, x::toInt))
return "OK"
}