Merged with mainline at revision 126347.
[official-gcc.git] / gcc / testsuite / gnat.dg / aggr5.ads
blobe5a0f9f4b55d132007f117f9f202416377913333
2 package aggr5 is
3 type Event is limited interface;
4 type Event_Access is access all Event'Class;
5 type Q_Action_Event is limited interface and Event;
6 function Build (X : integer) return Event_Access;
7 end aggr5;