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

30 lines
446 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FILE: test.kt
inline fun foo(stringMaker: () -> String): String {
return stringMaker()
}
fun box(): String {
foo { "OK "}
foo {
"OK"
// Comment
}
return "OK"
}
// EXPECTATIONS JVM_IR
// test.kt:9 box
// test.kt:5 box
// test.kt:9 box
// test.kt:5 box
// test.kt:10 box
// test.kt:5 box
// test.kt:11 box
// test.kt:5 box
// test.kt:14 box
// EXPECTATIONS JS_IR
// test.kt:14 box