fpc/tests/webtbs/tw21029.pp
2012-01-10 22:23:25 +00:00

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.