Files
kotlin-fork/compiler/testData/codegen/box/callableReference/adaptedReferences/suspendConversion/inlineBound.kt
T
2020-11-09 16:04:43 +03:00

30 lines
554 B
Kotlin
Vendored

// DONT_TARGET_EXACT_BACKEND: WASM
// WASM_MUTE_REASON: COROUTINES
// !LANGUAGE: +SuspendConversion
// WITH_RUNTIME
// WITH_COROUTINES
import helpers.*
import kotlin.coroutines.*
import kotlin.coroutines.intrinsics.*
fun runSuspend(c: suspend () -> Unit) {
c.startCoroutine(EmptyContinuation)
}
inline suspend fun invokeSuspend(fn: suspend () -> Unit) = fn()
class C {
var test = "failed"
fun foo() {
test = "OK"
}
}
fun box(): String {
val c = C()
runSuspend {
invokeSuspend(c::foo)
}
return c.test
}