2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / aggr11_pkg.ads
blob139c9efdac6da624e35b9eb3b1ecb563d4b5499d
1 package Aggr11_Pkg is
3 type Error_Type is (No_Error, Error);
5 type Rec (Kind : Error_Type := No_Error) is record
6 case Kind is
7 when Error => null;
8 when others => B : Boolean;
9 end case;
10 end record;
12 type Arr is array (1..6) of Rec;
14 end Aggr11_Pkg;