mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
11 lines
235 B
Java
11 lines
235 B
Java
class VarArgs {
|
|
private void g() {
|
|
f<flown111>(<flown1111>1);
|
|
f<flown112>(<flown1121>2, <flown1122>3, <flown1123>4);
|
|
}
|
|
|
|
private void f(int... <flown11>ints) {
|
|
int <caret>p = <flown1>ints[0];
|
|
}
|
|
}
|