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

Keegan Witt updated GROOVY-7509:
--------------------------------
    Comment: was deleted

(was: When one of the guys that knows the stub stuff better than I looks at 
this, I noticed that the static import from Java doesn't have the package 
qualifier, but the Groovy imports do (see the test assertions in my earlier 
comment).  Is this discrepancy intentional?)

> Problem With Stub Generator And Static Import Aliases
> -----------------------------------------------------
>
>                 Key: GROOVY-7509
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7509
>             Project: Groovy
>          Issue Type: Bug
>          Components: Stub generator / Joint compiler
>    Affects Versions: 2.4.4
>            Reporter: Jeff Scott Brown
>              Labels: regression
>         Attachments: staticimportalias.zip
>
>
> The attached staticimportalias.zip contains the following:
> {code:borderStyle=solid|title=src/main/groovy/demo/helper/SomeHelper.java}
> package demo.helper;
> public class SomeHelper {
>     public static final int ANSWER = 42;
> }
> {code}
> {code:borderStyle=solid|title=src/main/groovy/demo/SomeClass.groovy}
> package demo
> import static demo.helper.SomeHelper.ANSWER as MAGIC_NUMBER
> class SomeClass {
>     static int getMagicNumber() {
>         MAGIC_NUMBER
>     }
> }
> {code}
> {code:borderStyle=solid|title=src/main/groovy/demo/SomeJavaClass.java}
> package demo;
> public class SomeJavaClass {
>     SomeClass sc;
> }
> {code}
> The code will not compile with Groovy 2.4.4:
> {noformat}
> $ ./gradlew clean cG
> :clean
> :compileJava UP-TO-DATE
> :compileGroovy
> /Users/jeff/staticimportalias/build/tmp/groovy-java-stubs/demo/SomeClass.java:9:
>  error: cannot find symbol
> import static demo.helper.SomeHelper.MAGIC_NUMBER;
> ^
>   symbol:   static MAGIC_NUMBER
>   location: class
> 1 error
> startup failed:
> Compilation failed; see the compiler error output for details.
> 1 error
> :compileGroovy FAILED
> FAILURE: Build failed with an exception.
> * What went wrong:
> Execution failed for task ':compileGroovy'.
> > Compilation failed; see the compiler error output for details.
> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or 
> --debug option to get more log output.
> BUILD FAILED
> Total time: 4.467 secs
> {noformat}
> If I edit the top level build.gradle to use Groovy 2.4.3, the code compiles.



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

Reply via email to