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