rt_gccstream/gcc/testsuite/gnat.dg/sizetype1.adb

15 lines
273 B
Ada

-- { dg-do run }
with Interfaces.C; use Interfaces.C;
procedure Sizetype1 is
TC_String : String(1..8) := "abcdefgh";
TC_No_nul : constant char_array := To_C(TC_String, False);
begin
if TC_No_nul(0) /= To_C('a') then
raise Program_Error;
end if;
end;