01: package test; 02: 03: import java.util.List; 04: 05: public class ForEach { 06: 07: public static void main(String[] args) { 08: List<String> s = null; 09: 10: for (String t : s) { 11: System.err.println(t); 12: } 13: } 14: 15: }