blob: 5a625c53c2865578400fb23d15fcb6e0d285ef63 [file] [log] [blame]
import java.util.*;
public class Test {
String[] getArray(){
return null;
}
void foo() {
String[] array = getArray();
Collections.checkedList(array, String.class);
}
}