Files
kotlin-fork/compiler/testData/debug/stepping/localFunction.kt
T
2023-12-18 21:42:35 +00:00

28 lines
364 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FILE: test.kt
fun box() {
"OK"
fun bar() {
"OK"
}
"OK"
bar()
"OK"
}
// EXPECTATIONS JVM_IR
// test.kt:6 box
// test.kt:10 box
// test.kt:11 box
// test.kt:8 box$bar
// test.kt:9 box$bar
// test.kt:12 box
// test.kt:13 box
// EXPECTATIONS JS_IR
// test.kt:11 box
// test.kt:9 box$bar
// test.kt:13 box