aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/inline11_pkg.adb
blob: 8303ebac0a626e3190a54b3dc50784e642966112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;