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