Daniil Ovchinnikov created GROOVY-8496:
------------------------------------------

             Summary: Can't call default getProperty() implementation from 
superclass
                 Key: GROOVY-8496
                 URL: https://issues.apache.org/jira/browse/GROOVY-8496
             Project: Groovy
          Issue Type: Bug
            Reporter: Daniil Ovchinnikov


{code:title=GroovyClass.groovy}
class GroovyClass {}
{code}

{code:title=JavaClass.java}
class JavaClass extends GroovyClass { 
    @Override
    public Object getProperty(String propertyName) {
        return super.getProperty(propertyName); 
        // error: cannot find symbol: method getProperty(String)
    }
}
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to