Uploaded image for project: 'Groovy'
  1. Groovy
  2. GROOVY-9985

STC does not report type mismatches in array initializers

    XMLWordPrintableJSON

Details

    Description

      The following program compiles (with @CompileStatic), although it shouldn't.

      public class Main {
          public static void main(String[] args) {
            Integer[] arr = new Integer[]{1, "str"}; // does not report error
            // Integer[] arr2 = [1, "fda"] as Integer[] // does not report error (see GROOVY-9986)
          }
      }
      

      As a result, an exception is thrown at runtime

      Exception in thread "main" org.codehaus.groovy.runtime.typehandling.GroovyCastException: Cannot cast object 'str' with class 'java.lang.String' to class 'java.lang.Integer'
              at org.codehaus.groovy.runtime.typehandling.DefaultTypeTransformation.castToNumber(DefaultTypeTransformation.java:172)
              at org.codehaus.groovy.runtime.typehandling.DefaultTypeTransformation.continueCastOnNumber(DefaultTypeTransformation.java:282)
              at org.codehaus.groovy.runtime.typehandling.DefaultTypeTransformation.castToType(DefaultTypeTransformation.java:243)
              at org.codehaus.groovy.vmplugin.v8.IndyInterface.fromCache(IndyInterface.java:318)
              at Main.main(test.groovy:4)
      

      Tested on https://github.com/apache/groovy/commit/f0eea862549529ef4e93fafe337f86dd4ac98751

       

      Attachments

        Issue Links

          Activity

            People

              paulk Paul King
              theosot Thodoris Sotiropoulos
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Time Tracking

                  Estimated:
                  Original Estimate - Not Specified
                  Not Specified
                  Remaining:
                  Remaining Estimate - 0h
                  0h
                  Logged:
                  Time Spent - 1h
                  1h