OSDN Git Service

* tree-ssa-pre.c (create_component_ref_by_pieces_1) <ARRAY_REF>: Drop
[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;