Hi did anybody succeed with resuming `suspendCorou...
# multiplatform
j
Hi did anybody succeed with resuming 
suspendCoroutine
 from another thread? Im getting
CoroutinesInternalError: Fatal exception in coroutines machinery for DispatchedContinuation
l
I use
suspendCancellableCoroutine
only to ensure cancellation is always supported. That said, currently on Kotlin/Native, all objects in memory are either shared, or mutable, but never both. That's probably what leads to the crash you're experiencing.
🙏 1