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