mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 14:37:33 +07:00
12 lines
217 B
Java
12 lines
217 B
Java
class Test {
|
|
|
|
public static void main(String[] args) {
|
|
<ref>method("a", "b", "c");
|
|
}
|
|
|
|
public static <T> T method(T... a) {
|
|
return null;
|
|
}
|
|
|
|
public static void method(String... a) {}
|
|
} |