PR testsuite/86649
[official-gcc.git] / gcc / testsuite / gnat.dg / aliasing1.ads
blob9ebfd6206b445d9d193aee2068c7c8f11b6dd54b
1 package Aliasing1 is
3 type Rec is record
4 I : Integer;
5 end record;
7 type Ptr is access all Integer;
9 R : Rec;
11 function F (P : Ptr) return Integer;
13 end Aliasing1;