Consider the following: ```groovy abstract class A { def getX() { } } class C extends A { private x void test() { this.x } } ``` "x" in `this.x` is displayed as method call instead of field access. 
Consider the following:
"x" in
this.xis displayed as method call instead of field access.