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