paulk-asert commented on pull request #1614: URL: https://github.com/apache/groovy/pull/1614#issuecomment-903817142
There are examples (like below) which work after the change - so that's good. I know you are working on a cleaner medium-term change but I don't know if we can find a short-term fix for the regression in the meantime. ``` public class Main { public class Foo { public class Bar { private String prop; public Bar(String prop) { this.prop = prop; } public String getProp() { return prop; } } } public static void main(String[] args) { System.out.println(new Main().new Foo().new Bar("bar").getProp()); } } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@groovy.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org