blob: d4d1a15ffad5b8d816afb1ae1e1be2eda0454427 [file] [log] [blame]
import org.jetbrains.annotations.*;
class Class1 {
public void f(@Nullable Object o) {
o = o != null ? o : Class2.O;
o.toString();
}
}
class Class2 {
static final Object O = new Object();
}