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

49 lines
712 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FILE: test.kt
fun normalFunction() {
"OK"
}
inline fun inlineFunction() {
"OK"
}
fun test1() {
inlineFunction()
"OK"
}
fun test2() {
normalFunction()
"OK"
}
fun box() {
test1()
test2()
}
// EXPECTATIONS JVM JVM_IR
// test.kt:23 box
// test.kt:13 test1
// test.kt:9 test1
// test.kt:10 test1
// test.kt:14 test1
// test.kt:15 test1
// test.kt:24 box
// test.kt:18 test2
// test.kt:5 normalFunction
// test.kt:6 normalFunction
// test.kt:19 test2
// test.kt:20 test2
// test.kt:25 box
// EXPECTATIONS JS_IR
// test.kt:23 box
// test.kt:15 test1
// test.kt:24 box
// test.kt:18 test2
// test.kt:6 normalFunction
// test.kt:20 test2
// test.kt:25 box