view gcc/testsuite/gnat.dg/nested_generic2.ads @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

with Nested_Generic2_G1;
with Nested_Generic2_G2;

package Nested_Generic2 is

   package My_G1 is new Nested_Generic2_G1 ("Lewis");
   package My_G2 is new Nested_Generic2_G2 (T => Integer, P => My_G1);

   procedure Dummy;

private
   package My_Nested is new My_G1.Nested ("Clark");
end Nested_Generic2;