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 2017/01/08 05:04:58 UTC

[jira] [Commented] (GROOVY-7812) Static inner classes cannot be accessed from other files when running by 'groovy' command

    [ https://issues.apache.org/jira/browse/GROOVY-7812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15808743#comment-15808743 ] 

John Wagenleitner commented on GROOVY-7812:
-------------------------------------------

Related to GROOVY-4287.

> Static inner classes cannot be accessed from other files when running by 'groovy' command
> -----------------------------------------------------------------------------------------
>
>                 Key: GROOVY-7812
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7812
>             Project: Groovy
>          Issue Type: Bug
>          Components: Compiler
>    Affects Versions: 2.4.6
>            Reporter: Nikolay Chashnikov
>
> Create the following files
> {code:title=Outer.groovy}
> class Outer {
>   static class Inner {
>   }
> }
> {code}
> {code:title=Main.groovy}
> println new Outer()
> println new Outer.Inner()
> {code}
> and run 'groovy Main.groovy'. It'll fail with the following message:
> {quote}
> org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
> /home/.../Main.groovy: 2: unable to resolve class Outer.Inner 
>  @ line 2, column 9.
>    println new Outer.Inner()
> {quote}



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