Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.0
-
None
Description
@groovy.transform.CompileStatic class MyClass { void method() { String var = "Hola" println this.pepe println var.getProperties() println var.properties //Works without @CompileStatic, but it doesn't with it } String getPepe() { return "Hola Pepe"; } } new MyClass().method()