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
packagetest30
trait T {
String getFoo() { 'foo' }
}
And:
packagetest30classAimplements T {
|
}
Invoke code assist at "|": the suggestion list proposes to override methods inherited from Object, but not T.getFoo().
If T is an interface, it works correctly instead.
The text was updated successfully, but these errors were encountered:
Consider this:
And:
Invoke code assist at "|": the suggestion list proposes to override methods inherited from
Object
, but notT.getFoo()
.If
T
is an interface, it works correctly instead.The text was updated successfully, but these errors were encountered: