blob: 2def4a610c8609dc874b637d8e65f060bef3a742 [file] [log] [blame]
import java.util.List;
class B {
void bar(List<String> x){
foo(x);
}
<T> T foo(List<? super T> x){
return null;
}
}