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

25 lines
350 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// FILE: test.kt
fun <T> eval(f: () -> T) = f()
fun box() {
eval {
"OK"
}
}
// EXPECTATIONS JVM_IR
// test.kt:7 box
// test.kt:4 eval
// test.kt:8 invoke
// test.kt:4 eval
// test.kt:7 box
// test.kt:10 box
// EXPECTATIONS JS_IR
// test.kt:7 box
// test.kt:4 eval
// test.kt:8 box$lambda
// test.kt:10 box