Files

7 lines
221 B
Java

// "<html> Change signature of f(int, <b>char</b>, <b>int</b>, String, <b>int</b>, <b>Object</b>)</html>" "true"
class A {
void f(int i,String s) {}
public void foo() {
<caret>f(1,'2',4,"",1,null);
}
}