blob: 7a4aeb72b70bcdf19518c719abcd5215277be1b9 [file] [log] [blame]
class XY {
public static void foo(Object... x) { }
public static void foo(Object a, Object o, Object... x) { }
public static void main(String[] args) {
<ref>foo("a", "b");
}
}