2dc0404751
and produce an error on ambiguity.
18 lines
171 B
Kotlin
Vendored
18 lines
171 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// FILE: a.kt
|
|
package a
|
|
|
|
class X
|
|
|
|
// FILE: b.kt
|
|
package b
|
|
|
|
class X
|
|
|
|
// FILE: c.kt
|
|
package c
|
|
|
|
import a.*
|
|
import b.*
|
|
|
|
class Y : <!UNRESOLVED_REFERENCE!>X<!> |