blob: d43c76eaf5b009ee1ce384cf90604aac6dd29d63 [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
class Fun {
@Nullable
private Object foo;
public Fun() {
foo = new Object();
makeMagic();
if (null == foo) {
System.out.println("hello");
}
}
private void makeMagic() {
foo = null;
}
}