mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
173 B
Plaintext
14 lines
173 B
Plaintext
class A {
|
|
{
|
|
m(new String[0]);
|
|
m("a");
|
|
m("a", "b");
|
|
}
|
|
|
|
void m(String... args) {
|
|
method(1, args);
|
|
}
|
|
|
|
void method(int i, String... args) {
|
|
}
|
|
} |