Files

7 lines
213 B
Java

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