class X { void f(int[] a) { if (a.length != 0) { System.out.println(a.length); } else for (int i = 0; i < 3; i++) System.out.print(i); } }