(root)/
gcc-13.2.0/
gcc/
testsuite/
gnat.dg/
dflt_init_cond_pkg.ads
package Dflt_Init_Cond_Pkg is
   type Explicit is limited private with Default_Initial_Condition => True;
   type Implicit is limited private with Default_Initial_Condition;

   procedure Read (Obj : Explicit);
   procedure Read (Obj : Implicit);

private
   type Implicit is access all Integer;
   type Explicit is access all Integer;
end Dflt_Init_Cond_Pkg;