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