PR testsuite/86649
[official-gcc.git] / gcc / testsuite / gnat.dg / nested_generic2_g1.adb
blob446b4954f5fd13389ce19fcc9ea1046f672de5aa
1 package body Nested_Generic2_G1 is
3 procedure Debug (Msg : String; Prefix : String) is
4 begin
5 null;
6 end;
8 package body Nested is
9 procedure Debug (Msg : String) is
10 begin
11 Debug (Msg, Prefix);
12 end;
13 end Nested;
15 end Nested_Generic2_G1;