blob: bdd560ae026c2eb541fd34963ace31e904b3a48f [file]
// FILE: test.kt
fun ifoo(ok: String = "OK"): String {
return ok
}
fun box(): String {
return ifoo()
}
// FORCE_STEP_INTO
// EXPECTATIONS JVM_IR
// test.kt:9 box
// test.kt:4 ifoo$default (synthetic)
// test.kt:5 ifoo
// test.kt:4 ifoo$default (synthetic)
// test.kt:9 box
// EXPECTATIONS NATIVE
// test.kt:9 box
// test.kt:4 ifoo$default
// test.kt:6 ifoo$default
// test.kt:4 ifoo$default
// test.kt:4 ifoo
// test.kt:5 ifoo
// test.kt:6 ifoo
// test.kt:4 ifoo$default
// test.kt:6 ifoo$default
// test.kt:9 box
// test.kt:10 box
// EXPECTATIONS JS_IR
// test.kt:9 box
// EXPECTATIONS WASM
// test.kt:9 $box (11)
// test.kt:4 $ifoo$default (22)
// test.kt:5 $ifoo (11, 4)
// test.kt:4 $ifoo$default (22)
// test.kt:9 $box (4)