Files
kotlin-fork/compiler/testData/debug/stepping/anonymousFunction.kt
T
2022-08-05 11:53:40 +00:00

23 lines
313 B
Kotlin
Vendored

// FILE: test.kt
fun <T> eval(f: () -> T) = f()
fun box() {
eval {
"OK"
}
}
// EXPECTATIONS JVM JVM_IR
// test.kt:6 box
// test.kt:3 eval
// test.kt:7 invoke
// test.kt:3 eval
// test.kt:6 box
// test.kt:9 box
// EXPECTATIONS JS_IR
// test.kt:6 box
// test.kt:3 eval_0
// test.kt:7 box$lambda