mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 11:20:12 +07:00
9 lines
186 B
Java
9 lines
186 B
Java
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");
|
|
}
|
|
}
|