summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw21029.pp
blob: 9d10028d76a155a2a61e45bbfd7a70c70e238e7d (plain)
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.