Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / access5.ads
blob81ab3b34f1f233ec801da5337c10f236a629a53e
1 package Access5 is
2 type Vec;
3 type Ptr is access all Vec;
4 type Vec is array (1..3) of Ptr;
5 function F return Ptr;
6 pragma Import (Ada, F);
7 Tail : Vec := (F, F, F);
9 procedure Dummy;
10 end;