Files
kotlin-fork/idea/testData/inspections/blockingCallsDetection/InsideCoroutine.kt
T
Vyacheslav Gerasimov d84c5b1608 Switch to 183 platform
2018-12-06 20:16:58 +03:00

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);
}
}