mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 16:59:44 +02:00
15 lines
144 B
ObjectPascal
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.
|