``` fun foo() = runBlocking { // some method tha...
# announcements
i
Copy code
fun foo() = runBlocking {
  // some method that takes a block
  someOtherMethod {
    // want to access surrounding scope here
    async { ... }
  }
}
p
#C1CFAFJSK
i
thanks!