class Vararg { void x(byte... bs) { for (byte b : bs) { } } void y() { x((byte)1); } }