blob: ce887c64b0b0841fad56e89119aa9eceb2ccc6b2 [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;
}
}