blob: 19ce84dac324f6379021742b289f11b0869a0ee1 [file] [log] [blame]
class FirstClass {
void y() {
new SecondClass().x();
}
}
class SecondClass {
SecondClass g() { return null; }
void x() {
if (this != null) g().x();
}
}