blob: b6db3ae7d0140bad535f6faa19a7131ebe305e58 [file] [log] [blame]
class List<T> {
<A> List<A> f (A[] x){
return x;
}
<B extends T> List(List<B> y){
}
}
class Test {
void foo (){
List x = null;
List y = new List(x.f(new String[] {}));
}
}