blob: 7c355c0ea77b3a407fb31c67de8b2f3204276638 [file] [log] [blame]
// Test case for Issue 1555
// https://github.com/typetools/checker-framework/issues/1555
import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
import org.checkerframework.checker.nullness.util.NullnessUtil;
public class Issue1555 {
private @MonotonicNonNull String x;
String test() {
return NullnessUtil.castNonNull(x);
}
}