mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
test++
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
class FirstClass {
|
||||
|
||||
void y() {
|
||||
new SecondClass().x();
|
||||
}
|
||||
}
|
||||
|
||||
class SecondClass {
|
||||
SecondClass g() { return null; }
|
||||
|
||||
void x() {
|
||||
if (this != null) g().x();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user