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