blob: 1765c671b5df347d4ccae43fd9215666ffbab386 [file]
// LANGUAGE: +ContextParameters
// IGNORE_BACKEND_K1: ANY
// WITH_COROUTINES
// WITH_STDLIB
import helpers.*
import kotlin.coroutines.*
import kotlin.coroutines.intrinsics.*
class Context {
fun c() = "O"
}
class Extension {
fun e() = "K"
}
context(context: Context)
suspend fun Extension.suspendingTest() = context.c() + e()
fun builder(c: suspend () -> Unit) {
c.startCoroutine(EmptyContinuation)
}
fun box(): String {
var result = "fail"
builder {
with(Extension()) {
with(Context()) {
result = suspendingTest()
}
}
}
return result
}