mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
7 lines
151 B
Java
7 lines
151 B
Java
// "Add int as 2 parameter to method f" "true"
|
|
public class S {
|
|
void f(int k, int... args) {
|
|
f(1,1,null)<caret>;// -> f(1,1,null)
|
|
}
|
|
}
|