Files
kotlin-fork/compiler/testData/codegen/box/callableReference/adaptedReferences/suspendConversion/adaptedWithVarargs.kt
T
2020-04-27 21:02:37 +03:00

24 lines
529 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)
}
fun foo(vararg ss: String): String = ss[0] + "K"
suspend fun invokeSuspend(fn: suspend (String) -> String, arg: String) = fn.invoke(arg)
fun box(): String {
var test = "failed"
runSuspend {
test = invokeSuspend(::foo, "O")
}
return test
}