blob: 549aafd9a1373ba8930aaf943c6ee2dee21e2e5b [file] [log] [blame]
import java.util.*;
class C {
{
Object[] array;
<selection>List l1 = null;
l1 = new ArrayList(Arrays.asList(array));</selection>
List l2 = null;
l2 = new ArrayList(Arrays.asList(getObjects()));
System.out.println("l1 = " + l1 + ", l2 = " + l2);
}
String[] getObjects() {
}
}