Description
Compiling a class with inner class, using the ClassName.this syntax causes an error in the compiler.
The problem can be reproduced with following simple code fragment:
class BrokenGroovy { def user = new Object() { def field = BrokenGroovy.this } }