mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
34 lines
637 B
Kotlin
Vendored
34 lines
637 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// WITH_RUNTIME
|
|
// WITH_COROUTINES
|
|
// COMMON_COROUTINES_TEST
|
|
import helpers.*
|
|
import COROUTINES_PACKAGE.*
|
|
import COROUTINES_PACKAGE.intrinsics.*
|
|
|
|
suspend fun suspendThere(v: Any?): String = suspendCoroutineUninterceptedOrReturn { x ->
|
|
x.resume(v?.toString() ?: "<empty>")
|
|
COROUTINE_SUSPENDED
|
|
}
|
|
|
|
|
|
class A<T>(val arg: T) {
|
|
var result = ""
|
|
inline suspend fun foo() {
|
|
result = suspendThere(arg)
|
|
}
|
|
}
|
|
|
|
fun builder(c: suspend () -> Unit) {
|
|
c.startCoroutine(EmptyContinuation)
|
|
}
|
|
|
|
fun box(): String {
|
|
val a = A<String>("OK")
|
|
builder {
|
|
a.foo()
|
|
}
|
|
|
|
return a.result
|
|
}
|