Files
kotlin-fork/compiler/testData/codegen/box/callableReference/adaptedReferences/suspendUnitConversion.kt
T
2021-09-15 13:23:11 +02:00

23 lines
458 B
Kotlin
Vendored

// WITH_COROUTINES
// WITH_RUNTIME
// IGNORE_BACKEND: WASM
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
}