class VarArgs { private void g() { f("d",1,2,3); } void f(String value,int... i) { v(value, i); } private void v(String value, int... ints) { } }