When following the implementation proposed in <htt...
# coroutines
n
When following the implementation proposed in

https://www.youtube.com/watch?v=4W3ruTWUhpw

, should the following terminate with an exception?
Copy code
fun test() {
    doSomething()
}

fun doSomething() = async<Unit> {
    TODO()
}