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