blob: 3df2f76bf1e75b3f4305b3e438a0874422361e9f [file] [log] [blame]
// "Remove 1st parameter from method 'f'" "true"
class A {
void f(int i) {}
public void foo() {
<caret>f();
}
}