Files
kotlin-fork/compiler/testData/debug/stepping/simpleDefaultArgWithInline.kt
T
2023-08-15 17:03:11 +00:00

31 lines
487 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FILE: test.kt
inline fun ifoo(ok: String = "OK"): String {
return ok
}
fun ifoo2(ok: String = "OK"): String {
return ok
}
fun box(): String {
ifoo()
return ifoo2()
}
// FORCE_STEP_INTO
// EXPECTATIONS JVM JVM_IR
// test.kt:14 box
// test.kt:5 box
// test.kt:6 box
// test.kt:15 box
// test.kt:9 ifoo2$default (synthetic)
// test.kt:10 ifoo2
// test.kt:9 ifoo2$default (synthetic)
// test.kt:15 box
// EXPECTATIONS JS_IR
// test.kt:15 box