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