summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw9108.pp
blob: a2b1120abf4965502254d24d0e7221ef7089bda0 (plain)
1
2
3
4
5
6
7
8
9
10
11
program bug;

function Func(a:longint): longint;
begin
  if (a >= 0) then Func:=Trunc(1.0*a) else Func:=-Trunc(1.0*a);
end;

begin
  if Func(100) <> 100 then
    halt(1);
end.