10 lines
241 B
Kotlin
Vendored
10 lines
241 B
Kotlin
Vendored
@file:Suppress("UNUSED_PARAMETER")
|
|
|
|
import kotlin.coroutines.*
|
|
import java.lang.Thread.sleep
|
|
|
|
class InsideCoroutine {
|
|
suspend fun example1() {
|
|
Thread.<warning descr="Inappropriate blocking method call">sleep</warning>(1);
|
|
}
|
|
} |