mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 02:39:37 +07:00
7 lines
156 B
Java
7 lines
156 B
Java
// "Add char as 2 parameter to method f" "true"
|
|
class A {
|
|
void f(int i, char c, String s) {}
|
|
public void foo() {
|
|
<caret>f(1,'2',"");
|
|
}
|
|
} |