aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/opt15_pkg.adb
blob: ebb1d263e81ae39ae6dc11ec72e34042719087ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package body Opt15_Pkg is

  procedure Trace_Non_Inlined is
  begin
    raise Program_Error;
  end;

  procedure Trace_Inlined is
  begin
    Trace_Non_Inlined;
  end;

end Opt15_Pkg;