import java.util.*; class X { List getChildren() { return null; } void iterate() { List xs = getChildren(); foo(xs); } void foo(List l){} }