blob: 0342b9131d47779fa2426b07e7f90f697a81803b [file] [log] [blame]
class Base {
protected int f;
public int <caret>getF() {
return f;
}
}
class DRV extends Base {
void f() {
int f1 = getF();
}
}