blob: c19581fdbf230c085b041bc6d16eef32e012d026 [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
class Baz {
Integer bar() { return 2; }
void g() {
@Nullable Integer foo = bar();
if (foo == null) {
foo = 0;
}
System.out.println(foo.intValue());
}
}