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