mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
7 lines
183 B
Java
7 lines
183 B
Java
// "Change signature of 'f(int, String)' to 'f(int, char, String)'" "true"
|
|
class A {
|
|
void f(int i, char c, String s) {}
|
|
public void foo() {
|
|
<caret>f(1,'2',"");
|
|
}
|
|
} |