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