2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / addr2_p.ads
blobdd409d6f6677891902f86b38cbcfa79f8cfcedf8
2 package addr2_p is
4 type Block is array (1 .. 9) of Integer;
6 procedure Process (Blk : Block);
8 B1 : constant Block := Block'((1,2,3,4,5, others => 0));
9 B2 : constant Block := (1,2,3,4,5, others => 0);
10 end;