PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / equal_access.adb
blob699c4daf3b382452769f12edcefaa46dda7a3312
1 -- { dg-do compile }
3 procedure equal_access is
4 PA, PB : access procedure := null;
5 begin
6 if PA /= PB then
7 null;
8 end if;
9 end;