You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Marco-Antonio Avallone (JIRA)" <ji...@apache.org> on 2018/06/03 20:33:00 UTC

[jira] [Created] (GROOVY-8628) Groovydoc fails to parse Java static nested classes with diamond operator

Marco-Antonio Avallone created GROOVY-8628:
----------------------------------------------

             Summary: Groovydoc fails to parse Java static nested classes with diamond operator
                 Key: GROOVY-8628
                 URL: https://issues.apache.org/jira/browse/GROOVY-8628
             Project: Groovy
          Issue Type: Bug
          Components: GroovyDoc
            Reporter: Marco-Antonio Avallone


Failing source file example:
{code:java}
class JavaClass<E> {

    JavaClass() { }

    static class Nested<E> extends JavaClass<E> {
        Nested() { }
    }

}

JavaClass<Object> expectedObject = new JavaClass.Nested<>();
{code}
 



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