OSDN Git Service

* gcc-interface/decl.c (gnat_to_gnu_entity): Create variables for size
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gnat.dg / specs / tag1.ads
1 -- { dg-do compile }
2
3 package tag1 is
4    type T is tagged limited record
5       Y : access T'Class;    --  OK
6       X : access Tag1.T'Class;  --  Problem
7    end record;
8 end tag1;