mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 20:17:53 +07:00
9 lines
161 B
Java
9 lines
161 B
Java
// "f 5" "true"
|
|
public class Test {
|
|
void foo(int... <caret>f){
|
|
Syste.out.print(d(f));
|
|
}
|
|
int d(int[] d){}
|
|
void bar(){foo(5);}
|
|
void bar1(){foo(5);}
|
|
} |