mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
test++
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
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() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user