view gcc/testsuite/gnat.dg/controlled7.adb @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

-- PR ada/53766
-- Reported by Duncan Sands <baldrick@gcc.gnu.org>

-- { dg-do compile }
-- { dg-options "-gnatp" }

with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;

package body Controlled7 is

   procedure Proc (Offset : Storage_Offset) is
   begin
      if Offset + Unbounded_String'Max_Size_In_Storage_Elements >= 16 then
         raise Program_Error;
      end if;
   end;

end Controlled7;