(root)/
gcc-13.2.0/
gcc/
testsuite/
gnat.dg/
opt74.adb
-- { dg-do run }
-- { dg-options "-O2" }

with Opt74_Pkg; use Opt74_Pkg;

procedure Opt74 is
   Index, Found : Integer;
begin
   Proc (Found, Index);
   if Found = 1 then
      raise Program_Error;
   end if;
end;