OSDN Git Service

* gcc-interface/trans.c (Call_to_gnu): Robustify test for function case
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gnat.dg / access_discr2.adb
1 --  { dg-do run }
2
3 procedure access_discr2 is
4    type X (I : not null access Integer) is tagged null record;
5    
6    I : aliased Integer := 8;
7    Y : X (I'Access);
8 begin
9    null;
10 end access_discr2;