fpc/tests/tbs/tb0575.pp
joost 96ec37aa92 * Fixed multiplying negative tBCD values
git-svn-id: trunk@17744 -
2011-06-13 17:12:49 +00:00

15 lines
144 B
ObjectPascal

{$mode objfpc}{$H+}
uses
FmtBCD;
var
bcd: tbcd;
li: integer;
begin
bcd := -100;
li := bcd * 2;
if li<>-200 then
Halt(1);
end.