* fi.po: Update.
[official-gcc.git] / gcc / testsuite / gnat.dg / sizetype1.adb
blobe5d12c61e094b124f206aa6f6715e74fc29595d2
1 -- { dg-do run }
3 with Interfaces.C; use Interfaces.C;
5 procedure Sizetype1 is
7 TC_String : String(1..8) := "abcdefgh";
8 TC_No_nul : constant char_array := To_C(TC_String, False);
10 begin
11 if TC_No_nul(0) /= To_C('a') then
12 raise Program_Error;
13 end if;
14 end;