T.groovy ```groovy trait T { String getFoo() { 'foo' } } ``` C.groovy ```groovy class C implements T { static void main(args) { new C().getFoo() } } ``` Method call `getFoo` is showing as unknown (underlined).
T.groovy
trait T { String getFoo() { 'foo' } }C.groovy
Method call
getFoois showing as unknown (underlined).