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