blob: c3397418e3e379fa5a7114144359a6087df754c6 [file] [log] [blame]
// "Add 'int' as 1st parameter to method 'f'" "true"
public class S {
void f(int i, String args) {
}
void bar() {
f(11, "");
}
}