fpc/tests/webtbs/tw4058.pp
Jonas Maebe fe4e35d0cf + added
git-svn-id: trunk@325 -
2005-06-09 20:12:59 +00:00

13 lines
180 B
ObjectPascal

{$q+}
program IntCalcBug;
var i, j1, j2 : LongInt;
begin
i := 52000;
j1 := 1440 - round (i/60);
j2 := -round (i/60) + 1440;
if (j1 <> j2) then
halt(1);
end.