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

Paul King updated GROOVY-7917:
------------------------------
    Summary: Sub class can't override final static property  (was: Sub class 
can't override final static member)

> Sub class can't override final static property
> ----------------------------------------------
>
>                 Key: GROOVY-7917
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7917
>             Project: Groovy
>          Issue Type: Bug
>          Components: class generator
>    Affects Versions: 2.4.7
>            Reporter: Caleb Ott
>
> Running the code below, "Derived Class" is expected to be printed out, but 
> instead "Base Class" is printed.
> {code:java}
> class Base {
>     static final String CONST = "Base Class"
> }
> class Derived extends Base {
>     static final String CONST = "Derived Class"
> }
> println Derived.CONST
> {code}
> When writing this same code in Java, "Derived Class" is properly printed out.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to