28 lines
541 B
Kotlin
Vendored
28 lines
541 B
Kotlin
Vendored
// !LANGUAGE: +SuspendConversion
|
|
// WITH_RUNTIME
|
|
// WITH_COROUTINES
|
|
// IGNORE_BACKEND_FIR: JVM_IR
|
|
|
|
import helpers.*
|
|
import kotlin.coroutines.*
|
|
import kotlin.coroutines.intrinsics.*
|
|
|
|
fun runSuspend(c: suspend () -> Unit) {
|
|
c.startCoroutine(EmptyContinuation)
|
|
}
|
|
|
|
var test = "failed"
|
|
|
|
fun foo(s: String): String {
|
|
test = s + "K"
|
|
return test
|
|
}
|
|
|
|
inline suspend fun invokeSuspend(fn: suspend (String) -> Unit, arg: String) = fn.invoke(arg)
|
|
|
|
fun box(): String {
|
|
runSuspend {
|
|
invokeSuspend(::foo, "O")
|
|
}
|
|
return test
|
|
} |