mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
24 lines
285 B
Java
24 lines
285 B
Java
class X {
|
|
String <caret>l;
|
|
|
|
public X() {
|
|
fs("oo", this);
|
|
}
|
|
|
|
void fs(String t, X x)
|
|
{
|
|
x.set(t);
|
|
}
|
|
//
|
|
void set(String d) {
|
|
l = d;
|
|
}
|
|
}
|
|
|
|
class XX extends X {
|
|
void fs(String t, X x) {
|
|
x.fs(t, x);
|
|
}
|
|
}
|
|
|