1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package body Inline4_Pkg is procedure Test (I : Integer) is function F (J : Integer) return Integer is begin return I - J; end; pragma Inline_Always (F); begin if I /= F (I) then raise Program_Error; end if; end; end Inline4_Pkg;