blob: 035b3089fc4867a4884338bb80c0db5af56abf21 [file] [log] [blame]
class List<T> {
static <A, B extends List<A>> void f(A x, B y){
}
}
class Test {
void foo (){
List y = null;
List.f("", y);
}
}