(root)/
gcc-13.2.0/
gcc/
testsuite/
gnat.dg/
concat2.adb
-- { dg-do compile }
-- { dg-options "-O" }

with Text_IO; use Text_IO;

package body Concat2 is

   function Get_Param return String is
   begin
      return "";
   end;

   procedure Browse is
      Mode         : constant String := Get_Param;
      Mode_Param   : constant String := "MODE=" & Mode;
   begin
      Put_Line (Mode_Param);
   end;

end Concat2;