0239229dfc
- `ImportedFromObjectCallableDescriptor` and descriptors in general do not have consistent `equals`, which leads to duplication in completion when multiple functions from objects are imported, or when function is visible in some scope both implicitly and by import (see KT33903_1.kt) - ^KT-33903 Fixed
14 lines
145 B
Kotlin
Vendored
14 lines
145 B
Kotlin
Vendored
import Obj.foo
|
|
import Obj.foo
|
|
|
|
object Obj {
|
|
fun Any.foo() {}
|
|
|
|
fun usage() {
|
|
Any().foo<caret>
|
|
}
|
|
}
|
|
|
|
// EXIST: foo
|
|
// NUMBER: 1
|