import java.util.List; class Test { public static void foo(List args, int i) { System.out.println("hi"); System.out.println(args.get(i)); } }