2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gnat.dg / array6.adb
blob1cc9d109318ca5b8d5377e7200f50986a72ab4a2
1 -- { dg-do run }
3 with Interfaces; use Interfaces;
5 procedure Array6 is
7 type buf_t is array (unsigned_32 range <>) of character;
8 type v_str_t (first, last : unsigned_32) is
9 record
10 buf : buf_t (first .. last) := (others => ' ');
11 end record;
12 type v_str_ptr_t is access all v_str_t;
14 v_str : v_str_ptr_t;
16 function build_v_str (f, l : unsigned_32) return v_str_ptr_t is
17 vp : v_str_ptr_t := new v_str_t (f, l);
18 begin
19 return vp;
20 end;
22 begin
23 v_str := build_v_str (unsigned_32'last/2 - 256,
24 unsigned_32'last/2 + 1024*1024);
25 end;