mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-15 01:49:07 +07:00
10 lines
106 B
Java
10 lines
106 B
Java
class Test {
|
|
void foo(int... i) {
|
|
if (i.lenght == 0) {
|
|
}
|
|
}
|
|
|
|
void bar(){
|
|
foo(1, 2);
|
|
}
|
|
} |