Daily bump.
[official-gcc.git] / gcc / testsuite / gnat.dg / access_discr2.adb
blobceeeb46453551f9e5465bd5b241650f846397b7a
1 -- { dg-do run }
3 procedure access_discr2 is
4 type X (I : not null access Integer) is tagged null record;
6 I : aliased Integer := 8;
7 Y : X (I'Access);
8 begin
9 null;
10 end access_discr2;