Fix two obsoleteCoroutines tests

This commit is contained in:
Mikhail Glukhikh
2018-09-12 16:22:00 +03:00
parent 7dd168d4ef
commit 2bba4f5aa8
2 changed files with 2 additions and 0 deletions
@@ -3,6 +3,7 @@
// WITH_RUNTIME
import kotlin.coroutines.experimental.Continuation
import kotlin.coroutines.resume
fun test(con: Continuation<Int>) {
con.<caret>resume(12)
@@ -3,6 +3,7 @@
// WITH_RUNTIME
import kotlin.coroutines.experimental.Continuation
import kotlin.coroutines.resumeWithException
fun test(con: Continuation<Int>) {
con.<caret>resumeWithException(RuntimeException("Haha"))