Is the return type of `suspend` functions always `...
# coroutines
g
Is the return type of
suspend
functions always
Object
when compiled?
👌 3
d
Yes, because they need to be able to return the special value
kotlin.coroutines.intrinsics.COROUTINE_SUSPENDED
g
I see, thank you.