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 T {
privatedef field
privatestaticdef staticField
privatestaticfinaldefSTATIC_VALUE=nullprivatestaticdef staticMethod() {
}
}
classCimplements T {
defm() {
T__fieldT__staticFieldT__STATIC_VALUE
staticMethod()
}
}
Open Declaration (F3 or Ctrl+click) on any of the expressions in C.m() navigate to the top of the source file containing the trait. By contrast, T.super.staticMethod() and public method calls support navigation.
The text was updated successfully, but these errors were encountered:
Consider the following:
Open Declaration (F3 or Ctrl+click) on any of the expressions in C.m() navigate to the top of the source file containing the trait. By contrast,
T.super.staticMethod()
and public method calls support navigation.The text was updated successfully, but these errors were encountered: