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

Parameter with a generic type cannot take an argument with a raw type

XMLWordPrintable

    • b40
    • generic
    • generic

      matinicus % cat G3.java

      import java.io.*;
      import java.util.*;


      public class G3 {

          G3(Enumeration<InputStream> ei) { }

          void g() {
              new G3(new Enumeration() {
                      public boolean hasMoreElements() { return false; }
                      public Object nextElement() { return null; }
                  });
          }

      }
      matinicus % /w/auto/tiger/build/latest/bin/javac -J-showversion -source 1.5 G3.java
      java version "1.5.0-auto-tiger"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-auto-tiger-311a)
      Java HotSpot(TM) Client VM (build 1.5.0-beta-b26, mixed mode)

      G3.java:11: cannot find symbol
      symbol : constructor G3(<anonymous java.util.Enumeration>)
      location: class G3
              new G3(new Enumeration() {
              ^
      1 error
      matinicus %

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

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: