blob: b46a0beb43d9f80c4958d661b9f12d24485ea8f1 [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
class Test {
@NotNull
public String noNull(@NotNull String text) {
assert text != null;
return "";
}
private void foo() {
@NotNull String str = "";
assert str != null;
}
}