view gcc/testsuite/gnat.dg/nested_generic2_g1.ads @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 84e7813d76e9
children
line wrap: on
line source

generic
   S : String;
package Nested_Generic2_G1 is

   procedure Debug (Msg : String; Prefix : String);

   generic
      Prefix : String;
   package Nested is
      procedure Debug (Msg : String);
   end Nested;

end Nested_Generic2_G1;