blob: 959fc4265b6e81cb4e21ae2da26d90e7f31c8220 [file] [log] [blame]
// FIX: Wrap call with 'coroutineScope { ... }'
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.async
import kotlinx.coroutines.coroutineScope
fun calcSomething() {}
suspend fun CoroutineScope.foo() {
async {
calcSomething()
}
coroutineScope {
async {
calcSomething()
}
}
}