PR ada/62235
[official-gcc.git] / gcc / testsuite / gnat.dg / incomplete5_pkg.ads
blob28f3809d746bc8c6974fe9830b1fc99e552c64a9
1 generic
2 type Record_Type;
3 package Incomplete5_Pkg is
5 type Access_Type is access Record_Type;
7 type Base_Object is tagged record
8 Handle: Access_Type;
9 end record;
11 function Get_Handle(Object: Base_Object) return Access_Type;
13 function From_Handle(Handle: Access_Type) return Base_Object;
15 end Incomplete5_Pkg;