You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "John Wagenleitner (JIRA)" <ji...@apache.org> on 2016/12/18 15:59:58 UTC

[jira] [Updated] (GROOVY-7990) inner classes not found in scripts

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

John Wagenleitner updated GROOVY-7990:
--------------------------------------
    Description: 
Hello, when I try to create two files in the same directory:

{code:title=B.groovy}
class B {
    static class C { }
}
{code}

{code:title=A.groovy}
new B.C()
{code}

Then trying to run {{A.groovy}} with the groovy command gives a compilation error:

{code}
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
/home/webczat/A.groovy: 1: unexpected token: . @ line 1, column 4.
   new.B.C()
      ^
1 error
{code}

  was:
Hello, when I try to create two files in the same directory:
file B.groovy:
class B {
static class C {
}
}

and A.groovy:
new B.C()

Then trying to run A.groovy with the groovy command gives a compilation error:
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
/home/webczat/A.groovy: 1: unexpected token: . @ line 1, column 4.
   new.B.C()
      ^
1 error


> inner classes not found in scripts
> ----------------------------------
>
>                 Key: GROOVY-7990
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7990
>             Project: Groovy
>          Issue Type: Bug
>          Components: Compiler
>    Affects Versions: 2.4.0
>            Reporter: MichaƂ Zegan
>
> Hello, when I try to create two files in the same directory:
> {code:title=B.groovy}
> class B {
>     static class C { }
> }
> {code}
> {code:title=A.groovy}
> new B.C()
> {code}
> Then trying to run {{A.groovy}} with the groovy command gives a compilation error:
> {code}
> org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
> /home/webczat/A.groovy: 1: unexpected token: . @ line 1, column 4.
>    new.B.C()
>       ^
> 1 error
> {code}



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