mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
167 B
Java
15 lines
167 B
Java
class Base {
|
|
protected int f;
|
|
|
|
|
|
public int <caret>getF() {
|
|
return f;
|
|
}
|
|
}
|
|
|
|
class DRV extends Base {
|
|
void f() {
|
|
int f1 = getF();
|
|
}
|
|
}
|