class Test { public void test(String... a){} public void test(int... a){} public static void main(String[] args) { new Test().test(); } }