Completion: fixed filtering shadowed declarations for generic functions
This commit is contained in:
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
fun <T> List<T>.xxx(t: T){}
|
||||
fun <T> Iterable<T>.xxx(t: T){}
|
||||
|
||||
fun foo() {
|
||||
listOf(1).xx<caret>
|
||||
}
|
||||
|
||||
// EXIST: { lookupString: "xxx", itemText: "xxx", tailText: "(t: Int) for List<T> in <root>", typeText: "Unit" }
|
||||
// NOTHING_ELSE
|
||||
Reference in New Issue
Block a user