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 2017/02/01 23:19:05 UTC

[jira] [Closed] (GROOVY-7932) Cannot call private constructor from closures with @CompileStatic

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

Paul King closed GROOVY-7932.
-----------------------------

> Cannot call private constructor from closures with @CompileStatic
> -----------------------------------------------------------------
>
>                 Key: GROOVY-7932
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7932
>             Project: Groovy
>          Issue Type: Bug
>          Components: Static compilation
>    Affects Versions: 2.4.7, 2.5.x
>         Environment: Ubuntu 16.04
> openjdk version "1.8.0_91"
>            Reporter: Cazacu Mihai
>            Assignee: Shil Sinha
>             Fix For: 2.4.8
>
>
> {code:title=Test.groovy|borderStyle=solid}
> import groovy.transform.CompileStatic
> @CompileStatic
> interface Handler<E> {
>     void handle(E event)
> }
> @CompileStatic
> class Person {
>     final String name
>     // marking this method as 'protected' will fix the issue
>     private Person(String name) {
>         this.name = name
>     }
>     static void load(String name, Handler<Person> handler) {
>         Thread.start {
>             Person person = new Person(name)
>             handler.handle(person)
>         }
>     }
> }
> Person.load('John') { Person p ->
>     println p.name
> }
> {code}
> Error:
> {quote}
> Test.groovy: 20: Cannot call private constructor for Person from class Person$_load_closure1 @ line 20, column 20.
>    			Person person = new Person(name)
>                       ^
> 1 error
> {quote}



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