rt_gccstream/gcc/testsuite/gnat.dg/allocator_maxalign2.ads

13 lines
211 B
Ada

with System;
package Allocator_Maxalign2 is
type Block is record
X : Integer;
end record;
for Block'Alignment use Standard'Maximum_Alignment;
Addr : System.Address;
procedure Check;
end;