fpc/tests/webtbs/tw37301.pp
2020-07-07 20:22:00 +00:00

17 lines
203 B
ObjectPascal

{ %OPT=-O- -O1 }
program testbug;
{$mode objfpc}{$h+}
var
i: Integer;
b: Byte;
w: Word;
begin
i := 53;
b := 0;
w := abs(i-b);
WriteLn(w);
if w<>53 then
halt(1);
Writeln('ok');
end.