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

   function Ident_Int (X : Integer) return Integer is
   begin
      return X;
   end Ident_Int;

   procedure My_Proc (X : R) is
   begin
      null;
   end My_Proc;

end Stack_Usage1_Pkg;