PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / access4.adb
blob2b0062741353953261c2e2ad920e373c1b39e261
1 -- { dg-do run }
3 with access3; use access3;
4 procedure access4 is
5 Obj_IT : aliased T;
6 Obj_T2 : T2;
7 begin
8 Obj_T2.Op (Obj_IT'Access);
9 end;