mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 06:07:04 +07:00
7 lines
147 B
Java
7 lines
147 B
Java
// "Change signature of 'f(int...)' to 'f(int..., String)'" "false"
|
|
public class S {
|
|
void f(int... args) {
|
|
f(1,1, "")<caret>;
|
|
}
|
|
}
|