aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/equal_access.adb
blob: 699c4daf3b382452769f12edcefaa46dda7a3312 (plain)
1
2
3
4
5
6
7
8
9
--  { dg-do compile }

procedure equal_access is
   PA, PB  : access procedure := null;
begin
   if PA /= PB then
      null;
   end if;
end;