/* * ForEach.java * * Created on August 26, 2004, 6:15 PM */ package test; /** * * @author martin */ public class ForEach { /** Creates a new instance of ForEach */ public ForEach() { Iterable a = null; for (Object x : a) { } } }