mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
test++
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
class A implements I {
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
class B {
|
||||
int method(ArrayList list) {
|
||||
I[] a = (I[])list.toArray(new I[0]);
|
||||
|
||||
for(i = 0; i < a.length; i++) {
|
||||
I member = a[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
import java.util.ArrayList;
|
||||
interface I {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user