kotlinx.coroutines
kotlinx.coroutines copied to clipboard
Flow collection silently hangs when dispatcher throws an exception
Steps to reproduce:
flowOf(1, 2, 3)
.flowOn(Dispatchers.Main.immediate) // Should be not present in the classpath
.collect {
println("collect: $it")
}
Original report: https://github.com/JetBrains/compose-multiplatform/issues/4835