e951f1a43a
#KT-18619 Fixed
27 lines
377 B
Plaintext
Vendored
27 lines
377 B
Plaintext
Vendored
// FILE: before.kt
|
|
package c
|
|
|
|
import c.a
|
|
import c.a as b<caret> // caret stays here as it results into multiple results
|
|
|
|
fun a() = Unit
|
|
fun a(i: Int) = Unit
|
|
|
|
fun test() {
|
|
a()
|
|
b()
|
|
}
|
|
|
|
// FILE: after.kt
|
|
package c
|
|
|
|
import c.a
|
|
import c.a as b<caret> // caret stays here as it results into multiple results
|
|
|
|
fun a() = Unit
|
|
fun a(i: Int) = Unit
|
|
|
|
fun test() {
|
|
a()
|
|
b()
|
|
} |