blob: 0992913250ec95f414a8a792e0cc886ddae05c88 [file] [log] [blame]
-- { dg-do run }
-- { dg-options "-gnatws" }
procedure Alignment12 is
type Rec is record
I : Integer;
end record;
R : Rec;
for R'Alignment use 8;
begin
if R'Size /= 32 then
raise Program_Error;
end if;
end;