[
https://issues.apache.org/jira/browse/GROOVY-6831?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Paul King closed GROOVY-6831.
-----------------------------
> Access to static fields/properties from within nested classes is inconsistent
> -----------------------------------------------------------------------------
>
> Key: GROOVY-6831
> URL: https://issues.apache.org/jira/browse/GROOVY-6831
> Project: Groovy
> Issue Type: Bug
> Reporter: Paul King
> Assignee: Paul King
> Fix For: 2.4.8
>
>
> Misbehaves in the same way regardless of @CompileStatic:
> {code}
> import java.util.logging.Logger
> //@groovy.transform.CompileStatic
> class Foo {
> private static final transient Logger log =
> Logger.getLogger(Foo.class.getName())
> void method() {
> log.info('some info')
> }
> static class Bar {
> void method() {
> log.info('some inner info')
> }
> static class Baz {
> void method() {
> log.info('some inner inner info')
> }
> }
> }
> }
> new Foo().method() // => INFO: some info
> new Foo.Bar().method() // => INFO: some inner info
> new Foo.Bar.Baz().method() // => groovy.lang.MissingPropertyException: No
> such property: log for class: Foo$Bar
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)