class T { void f(String[] a) { for (int i = 0; i < a.length; i++) { System.out.println(a[i]); } } }