aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/array32.ads
blob: 48c00466e6fbd4a03651e1132652f9c0486b4b41 (plain)
1
2
3
4
5
6
7
8
9
10
11
package Array32 is

   type Rec is record
      I : Integer;
   end record;

   type Arr is array (Positive range <>) of Rec;

   procedure Init (A : out Arr);

end Array32;