mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
10 lines
130 B
Java
10 lines
130 B
Java
class C {
|
|
void <caret>method(int... args) {
|
|
}
|
|
|
|
{
|
|
method(1,2);
|
|
method(1,2,3);
|
|
method();
|
|
}
|
|
} |