blob: 1c5c6abd81084b39a7c401c3972f249c7b468b00 [file] [log] [blame]
/*
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.android
import kotlinx.coroutines.*
import kotlin.coroutines.*
// Classes for testing service loader
internal class EmptyCoroutineScopeImpl1 : CoroutineScope {
override val coroutineContext: CoroutineContext
get() = EmptyCoroutineContext
}
internal class EmptyCoroutineScopeImpl2 : CoroutineScope {
override val coroutineContext: CoroutineContext
get() = EmptyCoroutineContext
}
internal class EmptyCoroutineScopeImpl3 : CoroutineScope {
override val coroutineContext: CoroutineContext
get() = EmptyCoroutineContext
}