Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / equal11_record.ads
blob09a18227f35852c8589a2ea698132d86f1bd7431
1 with Ada.Containers.Doubly_Linked_Lists;
2 with Equal11_Interface;
4 package Equal11_Record is
6 use Equal11_Interface;
8 type My_Record_Type is new My_Interface_Type with
9 record
10 F : Integer;
11 end record;
13 overriding
14 procedure Put (R : in My_Record_Type);
16 Put_Result : Integer;
18 package My_Record_Type_List_Pck is
19 new Ada.Containers.Doubly_Linked_Lists (Element_Type => My_Record_Type);
21 end Equal11_Record;