blob: b8c57633bdad71f15ef22c1d3216825a4bc13290 [file] [log] [blame]
// PROBLEM: none
// DISABLE-ERRORS
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.async
fun calcSomething() {}
class My {
suspend fun <caret>CoroutineScope.foo() {
this@My.async {
calcSomething()
}
}
}