mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
13 lines
206 B
Java
13 lines
206 B
Java
class VarArgs {
|
|
private void g() {
|
|
f<flown111>("d",1,2,3);
|
|
}
|
|
|
|
void f(String value,int... <flown11>i) {
|
|
v(value, <flown1>i);
|
|
}
|
|
|
|
private void v(String value, int... <caret>ints) {
|
|
}
|
|
}
|