PR testsuite/86649
[official-gcc.git] / gcc / testsuite / gnat.dg / nested_generic2.ads
blob6cf2a416ad828b0073d02d1ca4ffb0142a549515
1 with Nested_Generic2_G1;
2 with Nested_Generic2_G2;
4 package Nested_Generic2 is
6 package My_G1 is new Nested_Generic2_G1 ("Lewis");
7 package My_G2 is new Nested_Generic2_G2 (T => Integer, P => My_G1);
9 procedure Dummy;
11 private
12 package My_Nested is new My_G1.Nested ("Clark");
13 end Nested_Generic2;