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