blob: 3f7d151c4086c64e4a103abce3aab55ba59b7706 [file]
// FILE: test.kt
inline fun inlineFun(s: () -> Unit) {
s()
}
fun box() {
inlineFun {
"OK"
}
}
// EXPECTATIONS
// test.kt:8 box
// test.kt:4 box
// test.kt:9 box
// test.kt:10 box
// test.kt:4 box
// test.kt:5 box
// test.kt:11 box