mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
7 lines
264 B
Java
7 lines
264 B
Java
// "<html> Change signature of f(int, <b>char</b>, <b>int</b>, String, <b>int</b>, <b>Object</b>)</html>" "true-preview"
|
|
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);
|
|
}
|
|
} |