import org.jetbrains.annotations.NotNull; class X { @NotNull String foo() {return "";} void bar() { String o = foo(); o += ""; if (o != null) { } } }