2016-11-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / root.ads
blobe80ab88040168295e7136739d220fbf4222060f1
1 package Root is
3 type Buffer_Type is array (Positive range <>) of Natural;
5 type Root_Type (First : Natural) is abstract tagged record
6 Buffer_Root : Buffer_Type (1 .. First);
7 end record;
9 end Root;