aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/inline17_pkg1.adb
blob: 80febe8be181b37f4ba6675c6544b90be3ac3a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
with Inline17_Pkg2; use Inline17_Pkg2;

package body Inline17_Pkg1 is

   procedure Test is
   begin
      null;
   end;

   function Get (Field : SQL_Field) return Integer is
   begin
      return +Field;
   end;

end Inline17_Pkg1;