Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gnat.dg
/
inline8_pkg1.adb
blob: 4406321375702133d568d62c2f58b9e66b2c05b2 [
file
] [
log
] [
blame
]
with
Inline8_Pkg2
;
package
body
Inline8_Pkg1
is
procedure
Test
(
I
:
Integer
)
is
function
F
is
new
Inline8_Pkg2
.
Calc
(
I
);
pragma
Inline
(
F
);
begin
if
I
/=
F
(
I
)
then
raise
Program_Error
;
end
if
;
end
;
end
Inline8_Pkg1
;