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