mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
16 lines
173 B
ObjectPascal
16 lines
173 B
ObjectPascal
{ %norun }
|
|
|
|
const a = 6;
|
|
{$IFDEF ENDIAN_LITTLE}
|
|
const b = 7;
|
|
{$ELSEIF a > 5}
|
|
const b = 7;
|
|
{$ELSE}
|
|
{$ERROR Unknown endian}
|
|
{$IFEND}
|
|
|
|
begin
|
|
if b<>7 then
|
|
halt(1);
|
|
end.
|