1 2 3 4 5 6 7 8 9 10 11 12
{$r+} {$inline on} function F(y : byte) : byte; inline; begin f:=byte(not y); end; BEGIN if F(1)<>254 then halt(1); END.