aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/tagged_type_pkg.adb
blob: dea1b54617ddcaf91bdf29543eec5cff13d554e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package body Tagged_Type_Pkg is
      
   function Pass_TT_Access (Obj : access TT'Class) return access TT'Class is
   begin
      if Obj = null then
         return null;
      
      else
         --  The implicit conversion in the assignment to the return object
         --  must fail if Obj's actual is not a library-level object.
         
         return TT_Acc : access TT'Class := Obj do
            TT_Acc := TT_Acc.Self;
         end return;
      end if;
   end Pass_TT_Access;
   
end Tagged_Type_Pkg;