(root)/
gcc-13.2.0/
gcc/
testsuite/
gnat.dg/
initializes.ads
package Initializes is
   protected PO is
      procedure Proc;
   private
      X : Boolean := True;
   end PO;

   protected type PT is
      procedure Proc;
   private
      X : Boolean := True;
   end PT;
end Initializes;