blob: 83975fbaf52c95dad12c1f89ea368e03bd97f0f5 [file]
package asyncLambdas
suspend fun main() {
foo()
}
val foo: suspend () -> Unit = {
val a = 5
bar()
}
val bar: suspend () -> Unit = {
val b = 3
baz()
}
val baz: suspend () -> Unit = {
//Breakpoint!
val a = 5
}