Remove kotlin.coroutine package from default imports.

This commit is contained in:
Stanislav Erokhin
2016-12-14 14:50:48 +03:00
committed by Stanislav Erokhin
parent 7d1b883171
commit 0132f3eea7
9 changed files with 43 additions and 18 deletions
@@ -0,0 +1,8 @@
// FILE: 1.kt
fun test(<!UNUSED_PARAMETER!>c<!>: <!UNRESOLVED_REFERENCE!>Continuation<!><Unit>) {}
// FILE: 2.kt
import kotlin.coroutines.*
fun test2(<!UNUSED_PARAMETER!>c<!>: Continuation<Unit>) {}
@@ -0,0 +1,4 @@
package
public fun test(/*0*/ c: [ERROR : Continuation<Unit>]<kotlin.Unit>): kotlin.Unit
public fun test2(/*0*/ c: kotlin.coroutines.Continuation<kotlin.Unit>): kotlin.Unit