blob: f3fecb71fb642e03ba657238f2689bc1d3764c74 [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.<caret>i);
}
}