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