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