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