2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / parent_ltd_with.ads
blob637aa7c3beb040680c2b0fa91382f751a74e9aa5
1 limited with Parent_Ltd_With.Child_Full_View;
3 package Parent_Ltd_With is
5 type Symbol is abstract tagged limited private;
7 type Symbol_Access is access all Symbol'Class;
9 private
11 type Symbol is abstract tagged limited record
12 Comp : Integer;
13 end record;
15 end Parent_Ltd_With;