blob: a1a5e846e3301baadd6d4ae9783ed0c3a3146915 [file] [log] [blame]
-- { dg-do compile }
package Static_Initializer4 is
type R is tagged record
b : Boolean;
end record;
type NR is new R with null record;
C : NR := (b => True);
end Static_Initializer4;