Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4975565

VerifyError with compound assignment and unboxing

XMLWordPrintable

    • b40
    • generic, x86, sparc
    • generic, linux, solaris_8, solaris_9, windows_nt, windows_2000, windows_xp

      Date: Thu, 08 Jan 2004 16:57:46 +0100
      From: <###@###.###>
      Subject: Unboxing error with 1.5
      To: ###@###.###

      when trying to run the following code:

      import java.util.*;

      public class GenericsTest {
          public static void main(String args[]) {


              List<Integer> l = new ArrayList<Integer>();
              l.add(3);
              l.add(8);
      // l.add("test");
              l.add(1);
              l.add(2);

              // Print list items
              int total = 0;
              for (Integer o : l) {
                  System.out.println(o);
                  total += o;
              }
              System.out.println("total = " + total);


          }
      }

      I get this error:

      Exception in thread "main" java.lang.VerifyError: Bad type on operand
      stack in method GenericsTest.main([Ljava/lang/String;)V at offset 93

      changing the line:

          total += o;

      to:

          total += o.intValue();

      gets rid of the error, but I think the original should work as well.

            gafter Neal Gafter (Inactive)
            gafter Neal Gafter (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: