aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/range_check3_pkg.ads
blob: d5864c6e18840ed3f952badf97b866fc55f960e7 (plain)
1
2
3
4
5
6
7
8
9
package Range_Check3_Pkg is
   type Array_Type is array (Positive range <>) of Integer;
   type Array_Access is access Array_Type;

   function One  return Positive;
   function Zero return Natural;

   function Allocate return Array_Access;
end Range_Check3_Pkg;