Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.3.1
-
None
-
None
Description
Similarily to GROOVY-6823, this code doesn't produce a direct setter call. However, this one is more complex to fix due to the current static compilation architecture.
@groovy.transform.CompileStatic class Outer { String outerProperty private class Inner { String fromInner() { outerProperty = 'outer' //uterProperty } } String blah() { new Inner().fromInner() } }