blob: aae26e4144cc512e1641f685df0133f479c0ba8c [file] [log] [blame]
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.async
fun calcSomething() = 42
object MyCoroutineScope : CoroutineScope {
suspend fun <caret>foo() = async { calcSomething() }
}