60f09f6512
Namely, once a file in a package `foo` has import `foo.bar as baz`, auto imported `bar` from the package name becomes inivisible in the file ^KT-54854 Fixed
10 lines
116 B
Kotlin
Vendored
10 lines
116 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package a
|
|
|
|
import a.A as ER
|
|
|
|
interface A {
|
|
val a: <!UNRESOLVED_REFERENCE!>A<!>
|
|
val b: ER
|
|
}
|