You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Eric Milles (Jira)" <ji...@apache.org> on 2022/11/17 18:32:00 UTC

[jira] [Resolved] (GROOVY-10845) Add type checking for enum constant constructor call

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

Eric Milles resolved GROOVY-10845.
----------------------------------
    Fix Version/s: 5.0.0-alpha-1
       Resolution: Fixed

https://github.com/apache/groovy/commit/2095b9eb3b73c5bcf27625395c24fa5210890443

> Add type checking for enum constant constructor call
> ----------------------------------------------------
>
>                 Key: GROOVY-10845
>                 URL: https://issues.apache.org/jira/browse/GROOVY-10845
>             Project: Groovy
>          Issue Type: Improvement
>          Components: Static Type Checker
>            Reporter: Eric Milles
>            Assignee: Eric Milles
>            Priority: Minor
>             Fix For: 5.0.0-alpha-1
>
>
> Consider the following:
> {code:groovy}
> @groovy.transform.TypeChecked
> enum E {
>   FOO; // no error for missing argument
>   E(String s) {
>   }
> }
> {code}
> Enum constant field {{FOO}} is initialized by static method call {{$INIT("FOO",0)}} which accepts {{Object[]}} as its argument(s).  Thus no error is produced for the example but it fails at runtime.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)