public class JLS_14_14_ForStatement_4 { public static void main(String[] args) { long[] test6 = {1,2L,3}; for(Object l : test6) { System.out.println(l); } } }