Files
T
2022-07-22 11:54:06 +00:00

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)
}
}