blob: 7892432536e766af1cdc870175264262bca38639 [file] [log] [blame]
import org.checkerframework.checker.nullness.qual.NonNull;
public class ChainedInitialization {
@NonNull String f;
@NonNull String g = f = "hello";
// Adding this empty initializer suppresses the warning.
// {}
// Adding this constructor does not suppress the warning.
// ChainedInitialization() {}
}