blob: 2750229a75fbec8e988677f0fc51666c506f1bb4 [file] [log] [blame]
import java.util.*;
class X {
List getChildren() {
return null;
}
void iterate() {
foo(getChildren());
}
void foo(List<X> l){}
}