mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
190 B
Plaintext
14 lines
190 B
Plaintext
class FirstClass {
|
|
|
|
void y() {
|
|
new SecondClass().x();
|
|
}
|
|
}
|
|
|
|
class SecondClass {
|
|
SecondClass g() { return null; }
|
|
|
|
void x() {
|
|
if (this != null) g().x();
|
|
}
|
|
} |