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

generics: use of inner raw class causes verify error

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 5.0
    • tools
    • generic
    • solaris_8

      From: Remi Forax <###@###.###>
      >public class Outer<T> {
      > class Inner<U extends Number> {
      > U u;
      >
      > void set(U u) {
      > this.u=u;
      > }
      > }
      >
      > public static void main(String[] args) {
      > new Outer<Object>().new Inner().set("toto");
      > }
      >}
      >
      >In the code above, the compiler don't detect the use
      >of the class Inner as a raw type. This code compile and
      >raise a VerifyError during the execution.
      >
      >This bug doesn't appear if the class Outer isn't a generic class.

            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: