1 package kotlinx.coroutines.android
2 
3 import kotlinx.coroutines.*
4 import kotlin.coroutines.*
5 
6 // Classes for testing service loader
7 internal class EmptyCoroutineScopeImpl1 : CoroutineScope {
8     override val coroutineContext: CoroutineContext
9         get() = EmptyCoroutineContext
10 }
11 
12 internal class EmptyCoroutineScopeImpl2 : CoroutineScope {
13     override val coroutineContext: CoroutineContext
14         get() = EmptyCoroutineContext
15 }
16 
17 internal class EmptyCoroutineScopeImpl3 : CoroutineScope {
18     override val coroutineContext: CoroutineContext
19         get() = EmptyCoroutineContext
20 }
21