Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
GROOVY-10593: add new test cases and bugfix for static imports
- Loading branch information
1 parent
7926dd8
commit 937a5bf4a6fc5d7a21cc8f56a1daf534bf073f57
Showing
5 changed files
with
99 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,5 @@ | ||
package org.codehaus.groovy.tools.groovydoc.testfiles.groovy_10593.b; | ||
|
||
import org.codehaus.groovy.tools.groovydoc.testfiles.groovy_10593.a.StaticList.ListAlias as List; | ||
|
||
public interface TestStaticAlias extends List {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,5 @@ | ||
package org.codehaus.groovy.tools.groovydoc.testfiles.groovy_10593.b; | ||
|
||
import org.codehaus.groovy.tools.groovydoc.testfiles.groovy_10593.a.StaticList.*; | ||
|
||
public interface TestStaticStar extends List {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,5 @@ | ||
package org.codehaus.groovy.tools.groovydoc.testfiles.groovy_10593.b; | ||
|
||
import org.codehaus.groovy.tools.groovydoc.testfiles.groovy_10593.a.StaticList.*; | ||
|
||
public interface TestStaticStar extends List {} |