blob: b11f4e58f4cec37ef5cf8fb63e7be8d39e4cae47 [file] [log] [blame]
// @skip-test How do you write a localized @SuppressWarnings rather than one that covers the whole
// class?
public class StaticInitialization {
@SuppressWarnings({"nullness", "initialization.fields.uninitialized"})
public static Object dontWarnAboutThisField;
static {
}
}