* gcc-interface/decl.c (gnat_to_gnu_entity) <E_Record_Type>: For a
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / private2_pkg.ads
blob468d239e53bf36a17a3c87e0bf91c666e24ba6cd
1 package Private2_Pkg is
3 type Rec2 (D : Natural) is private;
5 private
7 type Rec1 (D : Natural) is null record;
9 type Rec2 (D : Natural) is new Rec1 (D);
11 end Private2_Pkg;