mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
12 lines
219 B
Java
12 lines
219 B
Java
class Test {
|
|
|
|
public static void main(String[] args) {
|
|
<caret>method("a", "b", "c");
|
|
}
|
|
|
|
public static <T> T method(T... a) {
|
|
return null;
|
|
}
|
|
|
|
public static void method(String... a) {}
|
|
} |