[
https://issues.apache.org/jira/browse/GROOVY-7917?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15436361#comment-15436361
]
ASF GitHub Bot commented on GROOVY-7917:
----------------------------------------
Github user asfgit closed the pull request at:
https://github.com/apache/groovy/pull/394
> 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)