Files
kotlin-fork/compiler/testData/codegen/boxInline/smap/anonymous/lambda.kt
T
2022-07-14 23:24:18 +02:00

31 lines
336 B
Kotlin
Vendored

// NO_CHECK_LAMBDA_INLINING
// FILE: 1.kt
package builders
inline fun call(crossinline init: () -> Unit) {
val lambda = {
init()
}; lambda()
}
// FILE: 2.kt
import builders.*
fun test(): String {
var res = "Fail"
call {
res = "OK"
}
return res
}
fun box(): String {
return test()
}