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