navigate to several elements if there are many

(not only in ambiguity case)
This commit is contained in:
Svetlana Isakova
2012-09-05 16:20:48 +04:00
parent f8d341cb13
commit 0b4b515ad7
3 changed files with 22 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
trait A {
fun foo()
}
trait B {
fun foo()
}
trait C : A, B {
}
fun test(c: C) {
c.<caret>foo()
}