mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
234 B
Java
14 lines
234 B
Java
class C {
|
|
String f () {
|
|
return null;
|
|
}
|
|
|
|
C getParent() {return null;}
|
|
|
|
void test () {
|
|
C c = new C();
|
|
while (<selection>c.f()</selection> != null) {
|
|
c = c.getParent();
|
|
}
|
|
}
|
|
} |