Update stubBuilder/deserialization tests on coroutines

This commit is contained in:
Denis Zharkov
2016-12-15 10:59:31 +03:00
committed by Stanislav Erokhin
parent a3338b2230
commit 4737b3dd7f
4 changed files with 9 additions and 19 deletions
@@ -1,4 +1,5 @@
package test
import kotlin.coroutines.*
data class Modifiers(val x: Int) {
external fun extFun()
@@ -20,5 +21,5 @@ data class Modifiers(val x: Int) {
suspend fun suspend(x: Continuation<Int>) {}
fun builder(coroutine c: Any.() -> Continuation<Unit>) {}
fun builder(c: suspend Any.() -> Unit) {}
}