| 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() { | |
| } | |
| } |