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/16 23:51:00 UTC

[jira] [Updated] (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 updated GROOVY-10845:
---------------------------------
    Issue Type: Improvement  (was: Documentation)

> 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
>
> Consider the following:
> {code:groovy}
> @groovy.transform.TypeChecked
> enum E {
>   FOO; // no error for missing argument
>   E(String s) {
>   }
> }
> {code}
> Enum constant {{FOO}} is initialized by static method call {{$INIT("FOO",0)}} which accepts {{Object[]}} as it 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)