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