mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 11:20:12 +07:00
9 lines
201 B
Java
9 lines
201 B
Java
class XY {
|
|
public static void foo(Object... x) { }
|
|
public static void foo(Object a, Object o, Object... x) { }
|
|
|
|
public static void main(String[] args) {
|
|
<ref>foo("a", "b");
|
|
}
|
|
}
|