package test; import org.jetbrains.annotations.NotNull; public class CheckNotNull { @NotNull public String returnNotNull() { return "42"; } }