|
Relates :
|
|
|
Relates :
|
The following program does not compile anymore after 7166552:
import java.util.List;
class Test<A> {
public static void test(List l) {
Test<Object> to = m(l);
}
public static <E> Test<String> m(List<E> le) {
return null;
}
}
[used to compile with unchecked warnings]
|