OSDN Git Service

* tree-ssa-ccp.c (valid_lattice_transition): Clarify comment
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gnat.dg / ancestor_type.ads
1 package Ancestor_Type is
2
3    type T is tagged private;
4
5    package B is
6       function make return T;
7    end B;
8
9 private
10    type T is tagged record
11       n: Natural;
12    end record;
13 end Ancestor_Type;