Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / thunk1_pkg2.ads
blob82a48d500aa15e2841122ed065a1348a477552d1
1 package Thunk1_Pkg2 is
3 type Root is tagged record
4 I : Integer;
5 end record;
7 type Iface is interface;
8 procedure Op (This : in out Iface; S : String) is abstract;
10 type Ext is new Root and Iface with null record;
12 procedure Op (This : in out Ext; S : String);
14 end Thunk1_Pkg2;