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