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