(root)/
gcc-13.2.0/
gcc/
testsuite/
gnat.dg/
specs/
root.ads
package Root is

   type Buffer_Type is array (Positive range <>) of Natural;

   type Root_Type (First : Natural) is abstract tagged record
      Buffer_Root : Buffer_Type (1 .. First);
   end record;

end Root;