mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
12 lines
191 B
Java
12 lines
191 B
Java
class Test {
|
|
void fo<caret>o(int i, int ... ja){
|
|
}
|
|
|
|
void bar() {
|
|
foo(0);
|
|
foo(0, 1);
|
|
foo(0, 1, 2);
|
|
foo(0, new int[]{3, 4});
|
|
foo(0, new int[0]);
|
|
}
|
|
} |