You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Daniel Sun (Jira)" <ji...@apache.org> on 2021/06/26 15:22:00 UTC

[jira] [Updated] (GROOVY-10150) Eliminate ambiguities while parsing non-static class creator

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

Daniel Sun updated GROOVY-10150:
--------------------------------
    Description: 

{code:java}
            public class Computer {
                public class Cpu {
                    int coreNumber
                    public Cpu(int coreNumber) {
                        this.coreNumber = coreNumber
                    }
                }
            }
{code}


> Eliminate ambiguities while parsing non-static class creator
> ------------------------------------------------------------
>
>                 Key: GROOVY-10150
>                 URL: https://issues.apache.org/jira/browse/GROOVY-10150
>             Project: Groovy
>          Issue Type: Improvement
>            Reporter: Daniel Sun
>            Priority: Major
>
> {code:java}
>             public class Computer {
>                 public class Cpu {
>                     int coreNumber
>                     public Cpu(int coreNumber) {
>                         this.coreNumber = coreNumber
>                     }
>                 }
>             }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)