2017-09-26 Thomas Koenig <tkoenig@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / dispatch2_p.ads
blobe7852b446b5c0aa65730774b7fb47de9b5d816cb
1 package dispatch2_p is
2 type Object is tagged null record;
3 type Object_Ptr is access all Object'CLASS;
4 --
5 function Impl_Of (Self : access Object) return Object_Ptr;
6 function Get_Ptr (Self : access Object) return Object_Ptr
7 renames Impl_Of;
8 end;