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

[lworld] A primitive class field by name val confuses javac

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • repo-valhalla
    • repo-valhalla
    • tools
    • generic
    • generic

      Reported by Tobias.

      The following program does not compile on lworld branch top:

      public class X {
      static primitive class Test139Value {
              Object obj = null;
              MyValueEmpty empty = MyValueEmpty.default;
          }
          static primitive class Test139Wrapper {
              Test139Value val = Test139Value.default;
          }
          public MyValueEmpty test139() {
              Test139Wrapper w = new Test139Wrapper();
              return w.val.empty;
          }
      }

      primitive class MyValueEmpty {}


      I get:

      X.java:11: error: unexpected type
              return w.val.empty;
                     ^
        required: class,package
        found: variable
      X.java:11: error: cannot find symbol
              return w.val.empty;
                          ^
        symbol: variable empty
        location: class Test139Wrapper
      2 errors


            sadayapalam Srikanth Adayapalam (Inactive)
            sadayapalam Srikanth Adayapalam (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: