mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-15 17:52:52 +07:00
11 lines
171 B
Java
11 lines
171 B
Java
// "Change signature of 'f(String)' to 'f(int, String)'" "true"
|
|
public class S {
|
|
void f(String args) {
|
|
|
|
}
|
|
|
|
void bar() {
|
|
f(1<caret>1, "");
|
|
}
|
|
}
|