aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/asynch.ads
blob: c9b70aaf00ed893bdccf6e210ac80aebfbe724da (plain)
1
2
3
4
5
6
7
8
with Ada.Finalization;
package asynch is
   type t_ctrl is new Ada.Finalization.Controlled with record
      stuff : Natural := 0;
   end record;
   
   function null_ctrl return t_ctrl;
end asynch;