mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
- fix Introduce variable throws exception in implicit classes GitOrigin-RevId: c3489b1c6df3669f01b6e5defbf8a2208a7b441d
14 lines
211 B
Java
14 lines
211 B
Java
class C {
|
|
String f () {
|
|
return null;
|
|
}
|
|
|
|
C getParent() {return null;}
|
|
|
|
void test () {
|
|
C c = new C();
|
|
for (;c.f() != null;) {
|
|
c = c.getParent();
|
|
}
|
|
}
|
|
} |