mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 13:35:58 +07:00
GitOrigin-RevId: a836670753e1bb67e3bf47e686302b6d799d0c7c
9 lines
157 B
Java
9 lines
157 B
Java
// "x 1" "true"
|
|
public class Test {
|
|
void foo(){
|
|
d(true, new int[]{1});
|
|
}
|
|
void d(boolean b, int[] x) {}
|
|
void bar(){foo();}
|
|
void bar1(){foo();}
|
|
} |