public class VarCaptureForLoop { private void foo() {} public void bar(Iterable data) { for (var it : data) it.foo(); } }