class MyTest { void processStrings(String s, String... list) { System.out.println(list); } void test() { processStrings("", 1, 1); } }