blob: 757fdaff9ab771ffd67a168bf31bcaebf3053d6e [file] [log] [blame]
package test;
import org.jetbrains.annotations.NotNull;
public class CheckNotNull {
@NotNull
public String returnNotNull() { return "42"; }
}