URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [array7.ads] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
package Array7 is package Range_Subtype is type Arr is array (Positive range <>) of Integer; type Arr_Acc is access Arr; subtype My_Range is Integer range 1 .. 25; function Get_Arr (Nbr : My_Range) return Arr_Acc; end; package Range_Type is type My_Range is range 1 .. 25; type Arr is array (My_Range range <>) of Integer; type Arr_Acc is access Arr; function Get_Arr (Nbr : My_Range) return Arr_Acc; end; end Array7;
Go to most recent revision | Compare with Previous | Blame | View Log