You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Daniil Ovchinnikov (JIRA)" <ji...@apache.org> on 2017/02/07 06:44:41 UTC

[jira] [Updated] (GROOVY-8051) Reference outer class property within inner class closure

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

Daniil Ovchinnikov updated GROOVY-8051:
---------------------------------------
    Affects Version/s: 2.4.8

> Reference outer class property within inner class closure
> ---------------------------------------------------------
>
>                 Key: GROOVY-8051
>                 URL: https://issues.apache.org/jira/browse/GROOVY-8051
>             Project: Groovy
>          Issue Type: Bug
>          Components: Compiler, Static compilation, Static Type Checker
>    Affects Versions: 2.4.7, 2.4.8
>            Reporter: Daniil Ovchinnikov
>
> {code}
> @CompileStatic // works without this @CompileStatic
> class Outer {
>   def foo = 1
>   Inner createInner() { new Inner() }
>   class Inner {
>     Closure createClosure() {
>       return { foo }
>     }
>   }
> }
> @CompileStatic
> class Main {
>   static void main(String[] args) {
>     def i = new Outer().createInner()
>     def cl = i.createClosure()
>     println cl()
>   }
> }
> {code}
> Fail in runtime with:
> {noformat}
> Exception in thread "main" org.codehaus.groovy.runtime.typehandling.GroovyCastException: 
> Cannot cast object 'Outer$Inner@23e028a9' with class 'Outer$Inner' to class 'Outer'
> 	at org.codehaus.groovy.runtime.typehandling.DefaultTypeTransformation.continueCastOnSAM(DefaultTypeTransformation.java:405)
> 	at org.codehaus.groovy.runtime.typehandling.DefaultTypeTransformation.continueCastOnNumber(DefaultTypeTransformation.java:319)
> 	at org.codehaus.groovy.runtime.typehandling.DefaultTypeTransformation.castToType(DefaultTypeTransformation.java:232)
> 	at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.castToType(ScriptBytecodeAdapter.java:603)
> 	at Outer$Inner$_createClosure_closure1.doCall(innerclassestest.groovy)
> 	at Outer$Inner$_createClosure_closure1.call(innerclassestest.groovy)
> 	at Main.main(innerclassestest.groovy:23)
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)