OSDN Git Service

* gnat.dg/abstract1.ad[sb]: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gnat.dg / check1.ads
1 package Check1 is
2    type Arr is array (Integer range <>) of Integer;
3    type P2 is access all Arr;
4    type R (Disc : access Arr) is limited null record;
5    function FD (X : access R) return P2;
6 end Check1;