Retro68/gcc/gcc/testsuite/gnat.dg/controlled7.adb
2014-09-21 19:33:12 +02:00

19 lines
403 B
Ada

-- 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;