aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/prot5_pkg.adb
blob: 58536c54f50c1248865e2b6385a94f188ca5aacd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package body Prot5_Pkg is
   protected body P is
      function Get_Data return Integer is
      begin
         return Data;
      end Get_Data;

      procedure Proc (A : Integer := Get_Data) is
      begin
         Data := A * 2;
      end Proc;
   end P;
end Prot5_Pkg;