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