Fixed filtering of shadowed declarations after changes in extensions treatment
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
package dependency1
|
||||
|
||||
fun Any.xxx(): Int = 1
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package dependency2
|
||||
|
||||
fun ppp.C.xxx(): Int = 1
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package ppp
|
||||
|
||||
import dependency1.xxx
|
||||
import dependency2.xxx
|
||||
|
||||
interface I
|
||||
|
||||
fun I.xxx() {}
|
||||
|
||||
class C : I {
|
||||
fun foo() {
|
||||
xx<caret>
|
||||
}
|
||||
}
|
||||
|
||||
// EXIST: { lookupString: "xxx", itemText: "xxx", tailText: "() for C in dependency2", typeText: "Int" }
|
||||
// NOTHING_ELSE
|
||||
Reference in New Issue
Block a user