blob: 8e2774cbdce434feef67c6ab4cbc472f6d8a761a [file] [log] [blame]
// "Replace with setter" "true"
class Test {
private int i;
public void setI(int i) {
this.i = i;
}
}
class Foo {
void foo(Test t) {
t.setI(0);
}
}