PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / inline5_pkg.adb
blob66b00cab2933c74df02930d01d895ff16c6adc23
1 package body Inline5_Pkg is
3 procedure Test (I : Integer) is
5 function F (J : Integer) return Integer is
6 begin
7 return I - J;
8 end;
10 begin
11 if I /= F (I) then
12 raise Program_Error;
13 end if;
14 end;
16 end Inline5_Pkg;