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