2009-06-16 10:46:37 +01:00
|
|
|
/*
|
2009-08-27 11:08:27 -07:00
|
|
|
* @test /nodynamiccopyright/
|
2009-06-16 10:46:37 +01:00
|
|
|
* @bug 6638712
|
|
|
|
* @author mcimadamore
|
|
|
|
* @summary Inference with wildcard types causes selection of inapplicable method
|
|
|
|
* @compile/fail/ref=T6638712a.out -XDrawDiagnostics T6638712a.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
class T6638712a {
|
|
|
|
|
2010-11-23 11:08:43 +00:00
|
|
|
<T> Comparator<T> compound(Iterable<? extends Comparator<? super T>> it) { return null; }
|
2009-06-16 10:46:37 +01:00
|
|
|
|
|
|
|
public void test(List<Comparator<?>> x) {
|
|
|
|
Comparator<String> c3 = compound(x);
|
|
|
|
}
|
|
|
|
}
|