Conflicting imports error for imports of classes and packages

This commit is contained in:
Valentin Kipyatkov
2015-01-14 21:36:34 +03:00
parent 0c74f1679b
commit 2e420fc312
8 changed files with 85 additions and 9 deletions
@@ -11,7 +11,7 @@ class X
// FILE: c.kt
package c
import a.X
import b.X
import <!CONFLICTING_IMPORT!>a.X<!>
import <!CONFLICTING_IMPORT!>b.X<!>
class Y : <!UNRESOLVED_REFERENCE!>X<!>