[ 
https://issues.apache.org/jira/browse/GROOVY-6831?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Paul King updated GROOVY-6831:
------------------------------
    Summary: Access to static fields/properties from within inner classes is 
inconsistent  (was: Access to private static fields from within inner classes 
is inconsistent)

> Access to static fields/properties from within inner classes is inconsistent
> ----------------------------------------------------------------------------
>
>                 Key: GROOVY-6831
>                 URL: https://issues.apache.org/jira/browse/GROOVY-6831
>             Project: Groovy
>          Issue Type: Bug
>            Reporter: Paul King
>
> 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.4#6332)

Reply via email to