You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trait One {
def foo() {}
}
trait Two {
def foo() {}
}
classThreeimplementsOne, Two {
defbar() {
fo|
}
}
Content assist (Ctrl+Space) at | should show 3 proposals for foo(). When accepting the proposal foo() : Object - One, the insertion should be One.super.foo(). When accepting the proposal foo() : Object - Two, the insertion could be Two.super.foo() or just foo().
The text was updated successfully, but these errors were encountered:
Consider the following:
Content assist (Ctrl+Space) at
|
should show 3 proposals forfoo()
. When accepting the proposalfoo() : Object - One
, the insertion should beOne.super.foo()
. When accepting the proposalfoo() : Object - Two
, the insertion could beTwo.super.foo()
or justfoo()
.The text was updated successfully, but these errors were encountered: