2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gnat.dg / array7.ads
blobb47a1b6318e112a756c89d2c4c637dd4d7a6473b
1 package Array7 is
3 type Arr is array (Positive range <>) of Integer;
4 type Arr_Acc is access Arr;
6 subtype My_Range is Integer range 1 .. 25;
8 function Get_Arr (Nbr : My_Range) return Arr_Acc;
10 end Array7;