OSDN Git Service

* gnat.dg/bit_packed_array5.ads: Move dg directive to...
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gnat.dg / asynch.ads
1 with Ada.Finalization;
2 package asynch is
3    type t_ctrl is new Ada.Finalization.Controlled with record
4       stuff : Natural := 0;
5    end record;
6    
7    function null_ctrl return t_ctrl;
8 end asynch;