PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / asynch.ads
blobc9b70aaf00ed893bdccf6e210ac80aebfbe724da
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;
7 function null_ctrl return t_ctrl;
8 end asynch;