blob: 1beb20021bcdaaefd93e1489e7737e61cb84b836 [file]
// FILE: lib.kt
package foo
inline fun block(p: () -> Int) = p()
// FILE: main.kt
package foo
import kotlin.test.*
fun createFunction(x: Int): () -> Int = { x }
// CHECK_BREAKS_COUNT: function=box count=0
// CHECK_LABELS_COUNT: function=box name=$l$block count=0
fun box(): String {
assertEquals(23, block(createFunction(23)))
return "OK"
}