blob: 2e39394bdb8b1449140a67d5848ada3f08440101 [file] [log] [blame]
// PROBLEM: none
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.CoroutineContext
fun use(context: CoroutineContext) {}
abstract class MyCoroutineScope : CoroutineScope {
inner class Inner {
suspend fun foo() {
// Does not work yet (could work)
use(<caret>coroutineContext)
}
}
}