blob: 14f0df2244667f2eb205bfa1d8a9e499c699f5c3 [file]
// FILE: test.kt
inline fun inlineFun(s: () -> Unit) {
s()
}
fun box() {
inlineFun {
"OK"
}
}
// EXPECTATIONS JVM_IR
// test.kt:11 box
// test.kt:7 box
// test.kt:12 box
// test.kt:13 box
// test.kt:7 box
// test.kt:8 box
// test.kt:14 box
// EXPECTATIONS JS_IR
// test.kt:14 box
// EXPECTATIONS WASM
// test.kt:11 $box
// test.kt:7 $box
// test.kt:12 $box (8, 8, 8, 8)
// test.kt:14 $box