You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Paul King (JIRA)" <ji...@apache.org> on 2018/10/08 10:39:00 UTC

[jira] [Updated] (GROOVY-8764) Closure inside an anonymous class uses wrong outside class instance with @CS

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

Paul King updated GROOVY-8764:
------------------------------
    Summary: Closure inside an anonymous class uses wrong outside class instance with @CS  (was: Closure inside an anonymous class uses wrong outside class instance)

> Closure inside an anonymous class uses wrong outside class instance with @CS
> ----------------------------------------------------------------------------
>
>                 Key: GROOVY-8764
>                 URL: https://issues.apache.org/jira/browse/GROOVY-8764
>             Project: Groovy
>          Issue Type: Bug
>          Components: Compiler, Static compilation
>    Affects Versions: 2.4.15, 3.0.0-alpha-3, 2.5.2
>            Reporter: Xiaoguang Wang
>            Priority: Major
>
> This bug only occurs with @ComplieStatic
>  Affects 2.4/2.5/3.0
>  
> {code:java}
> @CompileStatic
> class GroovyTest {
>     private String foo
>     void test() {
>         new Runnable() {
>             void run() {
>                 def c = {
>                     foo
>                 }
>                 c()
>             }
>         } .run()
>     }
>     static void main(String ...args) {
>         new GroovyTest().test()
>     }
> }
> {code}
> Crash:
> {code:java}
> Exception in thread "main" java.lang.ClassCastException: com.test.spring4mvc.controller.GroovyTest$1 cannot be cast to com.test.spring4mvc.controller.GroovyTest
>     at com.test.spring4mvc.controller.GroovyTest$1$_run_closure1.doCall(GroovyTest.groovy)
>     at com.test.spring4mvc.controller.GroovyTest$1$_run_closure1.call(GroovyTest.groovy)
>     at com.test.spring4mvc.controller.GroovyTest$1.run(GroovyTest.groovy:16)
>     at com.test.spring4mvc.controller.GroovyTest.test(GroovyTest.groovy:11)
>     at com.test.spring4mvc.controller.GroovyTest.main(GroovyTest.groovy:22)
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)