OSDN Git Service

* exp_pakd.adb (Create_Packed_Array_Type): Always use a modular type
[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;