class C { /** * @param s */ void method(String... s) { System.out.println(s[0]); } { method("a", "b", "c"); method(); } }