aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/parent_ltd_with.ads
blob: 637aa7c3beb040680c2b0fa91382f751a74e9aa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
limited with Parent_Ltd_With.Child_Full_View;

package Parent_Ltd_With is
   
   type Symbol is abstract tagged limited private;
   
   type Symbol_Access is access all Symbol'Class;

private
   
   type Symbol is abstract tagged limited record
      Comp : Integer;
   end record;

end Parent_Ltd_With;