mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 10:48:12 +02:00
12 lines
193 B
ObjectPascal
12 lines
193 B
ObjectPascal
{ %FAIL }
|
|
|
|
program talignrecbad4;
|
|
|
|
{ Alignment must be a power of 2 between 1 and 64... 0 should return a compiler error }
|
|
|
|
type BadAlignment = record
|
|
Field: Integer;
|
|
end align 0;
|
|
|
|
begin
|
|
end. |