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