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

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

with Generic_Inst6_G1;
generic
   with package G2 is new Generic_Inst6_G1 (<>);
   with package G3 is new Generic_Inst6_G1 (<>);
package Generic_Inst6_X is
   Result : Integer := G2.Val * G3.Val;
end;