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

compiler fails to reject incorrect program, generates bogus code

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.2
    • tools
    • generic
    • generic



      Name: vi73552 Date: 07/16/99


      When debugging a co-worker's class, I noticed an incorrect
      constructor invocation that was being silently passed by
      the compiler. As it turned out, the compiler was getting
      confused by the incorrect statement, causing it to miscompile
      the class.

      The following test case demonstrates the problem:

      public class test {
          int x = 1;
          int y = 2;
          
          public test() {
              this.super(); // should be caught as an error
          }
          
          public static void main(String[] arg) {
              test t = new test();
              System.out.println(t.x + t.y);
          }
      }

      The constructor clearly contains a bogus explicit
      constructor invocation, but the compiler doesn't
      complain. It turns out that the initialization for
      t.x and t.y are not compiled into the resulting
      class file, causing the main method to print out 0
      rather than 3.
      (Review ID: 85689)
      ======================================================================

            wmaddoxsunw William Maddox (Inactive)
            vasya Vassili Igouchkine (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: