mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:08:01 +02:00
13 lines
131 B
ObjectPascal
13 lines
131 B
ObjectPascal
{$r+}
|
|
{$inline on}
|
|
|
|
function F(y : byte) : byte; inline;
|
|
begin
|
|
f:=byte(not y);
|
|
end;
|
|
|
|
BEGIN
|
|
if F(1)<>254 then
|
|
halt(1);
|
|
END.
|