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

generics: incorrect ambiguity error with super-bouded wildcards

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 5.0
    • 5.0
    • tools
    • tiger
    • generic
    • solaris_8

      ========== $ cat -n T.java
           1 class T {
           2 void f(java.util.List<? super Integer> l) {
           3 l.add(new Integer(3));
           4 }
           5 }
      ========== $ newjavac -source 1.5 T.java
      T.java:3: reference to add is ambiguous, both method add(E) in java.util.Collection<=? super java.lang.Integer> and method add(E) in java.util.List<? super java.lang.Integer> match
              l.add(new Integer(3));
               ^
      1 error
      ========== $

            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: