rt_gccstream/gcc/testsuite/gnat.dg/generic_dispatch_p.adb

8 lines
166 B
Ada

package body generic_dispatch_p is
function Constructor (I : not null access Integer) return DT is
R : DT;
begin
return R;
end Constructor;
end;