* gcc-interface/utils.c (create_subprog_decl): Move code dealing with
[official-gcc.git] / gcc / testsuite / gnat.dg / inline8_pkg1.adb
blob4406321375702133d568d62c2f58b9e66b2c05b2
1 with Inline8_Pkg2;
3 package body Inline8_Pkg1 is
5 procedure Test (I : Integer) is
7 function F is new Inline8_Pkg2.Calc (I);
8 pragma Inline (F);
10 begin
11 if I /= F (I) then
12 raise Program_Error;
13 end if;
14 end;
16 end Inline8_Pkg1;