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

24 lines
382 B
Kotlin
Vendored

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