blob: 0c19a2a3e4aef8958b64dce21cffd7588aaa41ad [file] [log] [blame]
class XY {
private void f(byte... bs) {}
private void f(int... is) {}
public static void main(String[] args) {
<ref>f((byte)0, (byte)1);
}
}