blob: 92b9f843798d6c141dbeca86dfca6d7b95c16d81 [file] [log] [blame]
// "Replace with getter" "true"
class Test {
private int i;
public int getI() {
return i;
}
}
class Foo {
void foo(Test t) {
System.out.println(t.getI());
}
}