Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gnat.dg
/
inline11_pkg.adb
blob: 8303ebac0a626e3190a54b3dc50784e642966112 [
file
] [
log
] [
blame
]
with
Ada
.
Text_IO
;
use
Ada
.
Text_IO
;
package
body
Inline11_Pkg
is
function
My_Img
(
I
:
Integer
)
return
String
is
begin
return
I
'Img;
end;
procedure Trace (I : Integer) is
begin
Put_Line (My_Img (I));
end;
end Inline11_Pkg;