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

javac-generated code doesn't obey binary compatibility for enums

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 5.0
    • 5.0
    • tools
    • b56
    • generic
    • solaris_8

      First compile this:

          enum Color {
              red, green
          }

          class Main {
              static int f(Color c) {
                  switch(c) {
                  case green:
                      return 2;
                  case red:
                      return 1;
                  default:
                      return 0;
                  }
              }

              public static void main(String[] args) {
                  f(Color.red);
              }
          }

      and then this:

          enum Color {
              red
          }

      and then run Main. The binary compatibility rules for enums require
      the program to execute to completion with no exceptions, but the current
      implementation using chained if statements does not do that.

            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: