mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
14 lines
183 B
Java
14 lines
183 B
Java
class A {
|
|
{
|
|
method(1);
|
|
method(1, "a");
|
|
method(1, "a", "b");
|
|
}
|
|
|
|
void m<caret>(String... args) {
|
|
method(1, args);
|
|
}
|
|
|
|
void method(int i, String... args) {
|
|
}
|
|
} |