aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gnat.dg/inline_tagged.adb
blob: e0692884f6b2ff95dc4f7475ccff77556ad63867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
-- { dg-do run }
-- { dg-options "-gnatN" }

with Text_IO; use Text_IO;
with system; use system; 
procedure inline_tagged is
   package Pkg is
      type T_Inner is tagged record
         Value : Integer;
      end record; 
      type T_Inner_access is access all T_Inner;
      procedure P2 (This : in T_Inner; Ptr : address);
      pragma inline (P2);
      type T_Outer is record
           Inner : T_Inner_Access;
      end record; 
      procedure P1 (This : access T_Outer);
   end Pkg;
   package body Pkg is
      procedure P2 (This : in T_Inner; Ptr : address) is
      begin   
         if this'address /= Ptr then
            raise Program_Error;
         end if;
      end;    
      procedure P1 (This : access T_Outer) is
      begin
         P2 (This.Inner.all, This.Inner.all'Address);
      end P1; 
   end Pkg;
   use Pkg;
   Thing : aliased T_Outer := (inner => new T_Inner);
begin   
   P1 (Thing'access);
end;