Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumKotlincoroutines basics launch asyncSingle-choice MCQ

What is the behavior of an exception thrown inside an `async` block?

val deferred = scope.async { throw IllegalStateException("boom") } // deferred.await() is never called