blob: 6a0f0707c11d5e3761fdd1a2457084a14005a5df [file]
// FILE: test.kt
inline fun alsoInline() = "OK"
inline fun ifoo(s: String = alsoInline()): String {
return s
}
fun box(): String {
return ifoo()
}
// EXPECTATIONS JVM_IR
// test.kt:11 box
// test.kt:6 box
// test.kt:4 box
// test.kt:6 box
// test.kt:7 box
// test.kt:11 box
// EXPECTATIONS JS_IR
// test.kt:11 box
// EXPECTATIONS WASM
// test.kt:11 $box (11, 4)
// test.kt:6 $box
// test.kt:4 $box (26, 26, 26, 26, 30)
// test.kt:7 $box (11, 4)