blob: 7ca509407f590ccfe5ae9ec5fe4fc04bbe89d6a4 [file] [log] [blame]
import org.checkerframework.checker.nullness.qual.*;
public class Uninit6 {
// Failure to initialize these fields does not directly compromise the
// guarantee of no null pointer errors.
@MonotonicNonNull Object f;
@Nullable Object g;
Uninit6() {}
}