blob: 17e6682fcad9d017f9f1e115e69c25a752a67ec4 [file] [log] [blame]
// "Remove 2nd parameter from method 'f'" "true"
class A {
void f(int i, String s, int i2) {}
public void foo() {
<caret>f(1,1);
}
}