We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fun main(args: Array<String>) = runBlocking<Unit> { val parent = Job() val actor = kotlinx.coroutines.experimental.channels.actor<Int>(parent = parent) { channel.consumeEach { throw IllegalArgumentException() } } actor.send(1) parent.join() }
Will silently hang