* gcc-interface/utils.c (create_subprog_decl): Move code dealing with
[official-gcc.git] / gcc / testsuite / gnat.dg / inline7_pkg1.adb
blobc9055211786c1611facf99547fee6f7bf2516345
1 with Inline7_Pkg2;
3 package body Inline7_Pkg1 is
5 procedure Test (I : Integer) is
7 function F is new Inline7_Pkg2.Calc (I);
9 begin
10 if I /= F (I) then
11 raise Program_Error;
12 end if;
13 end;
15 end Inline7_Pkg1;