* gcc-interface/gigi.h (pad_type_has_rm_size): Declare.
[official-gcc.git] / gcc / testsuite / gnat.dg / alignment11.adb
blobe55d8783180fd3bdbb9193e4cb66212b774a875a
1 -- { dg-do run }
2 -- { dg-options "-gnatws" }
4 procedure Alignment11 is
6 type Arr is array (1 .. 3) of Character;
7 for Arr'Alignment use 4;
9 A : Arr;
11 begin
12 if A'Size /= 32 then
13 raise Program_Error;
14 end if;
15 end;