Files
kotlin-fork/compiler/testData/codegen/box/callableReference/adaptedReferences/suspendUnitConversion.kt
T
2021-10-12 08:42:00 +03:00

22 lines
434 B
Kotlin
Vendored

// WITH_COROUTINES
// WITH_RUNTIME
import helpers.*
import kotlin.coroutines.*
import kotlin.coroutines.intrinsics.*
suspend fun foo(x: suspend () -> Unit) = x()
suspend fun bar(): Int = suspendCoroutineUninterceptedOrReturn<Int> {
it.resume(1)
COROUTINE_SUSPENDED
}
fun box(): String {
var result = ""
suspend {
foo(::bar)
result += "OK"
}.startCoroutine(EmptyContinuation)
return result
}