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
In a scenario similar to #1113, Eclipse cannot find properties that are declared on a supertrait, causing inference failure and spurious compilation errors that go away with groovyc.
trait Super {
String prop
}
trait Sub extends Super {
}
class Foo implements Sub {
// Eclipse doesn't see `prop`
}
The text was updated successfully, but these errors were encountered:
In a scenario similar to #1113, Eclipse cannot find properties that are declared on a supertrait, causing inference failure and spurious compilation errors that go away with groovyc.
The text was updated successfully, but these errors were encountered: