Completion: fixed filtering shadowed declarations for generic functions
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
interface I<T> {
|
||||
fun xxx(): T
|
||||
}
|
||||
|
||||
fun foo(i1: I<Int>, i2: I<String>) {
|
||||
with (i1) {
|
||||
with (i2) {
|
||||
xx<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// EXIST: { lookupString: "xxx", itemText: "xxx", tailText: "()", typeText: "String" }
|
||||
// NOTHING_ELSE
|
||||
Reference in New Issue
Block a user