Eric Milles created GROOVY-11597:
------------------------------------

             Summary: STC: element type of enum class
                 Key: GROOVY-11597
                 URL: https://issues.apache.org/jira/browse/GROOVY-11597
             Project: Groovy
          Issue Type: Bug
          Components: Static Type Checker
            Reporter: Eric Milles


Consider the following:
{code:groovy}
@TypeChecked test() {
  for (ts in Thread.State) {
    println "${ts.ordinal()}: ${ts.name()}"
  }
}
{code}

Without STC, this runs and prints out the enum values of {{Thread.State}}.  
With STC, it errors on "ts.name()" and "ts.ordinal()".



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

Reply via email to