PR testsuite/86649
[official-gcc.git] / gcc / testsuite / gnat.dg / vect10.ads
blobaa3aa343233b6197a13103afc81fb755e352dd44
1 with Vect9_Pkg; use Vect9_Pkg;
3 package Vect10 is
5 type Rec is record
6 Val : Unit;
7 end record;
9 type Rec_Vector is array (Positive range <>) of Rec;
11 procedure Proc
12 (F : in Rec_Vector;
13 First_Index : in Natural;
14 Last_Index : in Natural;
15 Result : out Unit);
17 end Vect10;