mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
12 lines
150 B
Plaintext
12 lines
150 B
Plaintext
import java.util.*;
|
|
|
|
class X {
|
|
List getChildren() {
|
|
return null;
|
|
}
|
|
|
|
void iterate() {
|
|
foo(getChildren());
|
|
}
|
|
void foo(List<X> l){}
|
|
} |