Switch to 183 platform

This commit is contained in:
Vyacheslav Gerasimov
2018-12-06 20:16:58 +03:00
parent 5aa0b7d2aa
commit d84c5b1608
70 changed files with 698 additions and 698 deletions
@@ -0,0 +1,10 @@
@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);
}
}