blob: dd38e5a0fc9c6c619214f8094cdb9edd79d19a8a [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
class X {
@NotNull
String foo() {return "";}
void bar() {
String o = foo();
o += "";
if (<warning descr="Condition 'o != null' is always 'true'">o != null</warning>) {
}
}
}