2016-01-15 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / limited_with4_pkg.ads
blobf69ab47bab9b0184fdd71e4d66032998433cc6e1
1 -- { dg-do compile }
2 -- { dg-options "-gnat12 -gnatct" }
4 limited with Limited_With4;
6 package Limited_With4_Pkg is
8 type Object is tagged null record;
9 type Object_Ref is access all Object;
10 type Class_Ref is access all Object'Class;
12 function Func return Limited_With4.Class_Ref;
13 procedure Proc (Arg : Limited_With4.Class_Ref);
15 end Limited_With4_Pkg;