mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 11:18:16 +07:00
7 lines
148 B
Java
7 lines
148 B
Java
// "Change signature of 'f(int...)' to 'f(String, int...)'" "true"
|
|
public class S {
|
|
void f(String s, int... args) {
|
|
f("",1,1);
|
|
}
|
|
}
|