Conflicting imports error for imports of classes and packages
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// FILE: a.kt
|
||||
package a.x
|
||||
|
||||
class X
|
||||
|
||||
// FILE: b.kt
|
||||
package b.x
|
||||
|
||||
class X
|
||||
|
||||
// FILE: c.kt
|
||||
package c
|
||||
|
||||
import <!CONFLICTING_IMPORT!>a.x<!>
|
||||
import <!CONFLICTING_IMPORT!>b.x<!>
|
||||
|
||||
class Y : <!UNRESOLVED_REFERENCE!>x<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>X<!>
|
||||
Reference in New Issue
Block a user