Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gnat.dg / ancestor_type.ads
blob2ed1f19c2c82044598f712d1905babc11e4b62ca
1 package Ancestor_Type is
3 type T is tagged private;
5 package B is
6 function make return T;
7 end B;
9 private
10 type T is tagged record
11 n: Natural;
12 end record;
13 end Ancestor_Type;