```kotlin runBlocking { cancel() withContext(EmptyCoroutineContext) { println("This will not be printed") } println("Neither will this") } ``` ```kotlin runBlocking { cancel() withTimeout(1.seconds) { println("This will be printed") } println("This will not") } ```