summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/inline3_pkg.adb
blob: 229075b92bff3ffe70bf51cdfc57a7508f195c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package body Inline3_Pkg is

  procedure Test (I : Integer) is

    function F (J : Integer) return Integer is

    begin
      return I - J;
    end;

  begin
    if I /= F (I) then
      raise Program_Error;
    end if;
  end;

end Inline3_Pkg;