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

How does exception propagation differ between these two snippets inside the same `coroutineScope`?

// Snippet A val d = async { throw RuntimeException("boom") } // no await on d // Snippet B launch { throw RuntimeException("boom") }