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