URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [array13.ads] - Rev 304
Compare with Previous | Blame | View Log
package Array13 is Max : Natural := 1; type Arr is array (Natural range 0..Max) of Natural; type T is record A : Arr := (others => 0); end record; procedure Foo; end Array13;