mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
test++
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
public class C implements I{
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public class Client {
|
||||
C[] array;
|
||||
|
||||
{
|
||||
array = new C[0];
|
||||
for(int i = 0; i < array.length; i++){
|
||||
array[i] = new C();
|
||||
}
|
||||
}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public interface I {
|
||||
}
|
||||
Reference in New Issue
Block a user