Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / controlled6_pkg.ads
blob2f1052be98158d4a3836ce6266c3222998fb3f98
1 with Ada.Finalization;
3 generic
5 type T is private;
7 package Controlled6_Pkg is
9 type Node_Type is record
10 Item : T;
11 end record;
13 type Node_Access_Type is access Node_Type;
15 end Controlled6_Pkg;