* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / gnat.dg / array25_pkg.ads
blob1965bab249b4a007680a83928dae9cb4114c6e4b
1 generic
3 UB1 : Natural;
5 UB2 : Natural;
7 package Array25_Pkg is
9 type Arr1 is array (1 .. UB1) of Integer;
11 type Rec is record
12 Data : Arr1;
13 end record;
15 type Arr2 is array (1 .. UB2) of Rec;
17 procedure Get (A : out Arr2);
19 end Array25_Pkg;