navigate to several elements if there are many
(not only in ambiguity case)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
trait A {
|
||||
fun foo()
|
||||
}
|
||||
|
||||
trait B {
|
||||
fun foo()
|
||||
}
|
||||
|
||||
trait C : A, B {
|
||||
|
||||
}
|
||||
|
||||
fun test(c: C) {
|
||||
c.<caret>foo()
|
||||
}
|
||||
Reference in New Issue
Block a user