86b5c63891
In case of IrFunctionReference with type SuspendFunction (no K!) there was a misalignment between the base class (Any) and the origin (LAMBDA..). As a result the SuspendFunctionLowering was getting confused and produced hanging code.
32 lines
545 B
Kotlin
Vendored
32 lines
545 B
Kotlin
Vendored
// !LANGUAGE: +SuspendConversion
|
|
// WITH_RUNTIME
|
|
// WITH_COROUTINES
|
|
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
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
|
|
} |