Move coroutine-related diagnostic tests to run them with stdlib

It's necessary because all coroutine related declarations (Continuation, etc)
are now in the stdlib
This commit is contained in:
Denis Zharkov
2017-01-26 19:51:49 +03:00
parent 8fa8ba7055
commit 1d5144b168
110 changed files with 381 additions and 381 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
package forTests
import kotlin.coroutines.Continuation
import kotlin.coroutines.CoroutineContext
import kotlin.coroutines.EmptyCoroutineContext
import kotlin.coroutines.startCoroutine
import kotlin.coroutines.experimental.Continuation
import kotlin.coroutines.experimental.CoroutineContext
import kotlin.coroutines.experimental.EmptyCoroutineContext
import kotlin.coroutines.experimental.startCoroutine
open class EmptyContinuation(override val context: CoroutineContext = EmptyCoroutineContext) : Continuation<Any?> {
companion object : EmptyContinuation()