fpc/tests/webtbs/tbug1068.pp
2000-08-16 13:02:33 +00:00

15 lines
186 B
ObjectPascal

PROGRAM bug1068;
VAR i: INT64;
s : string;
BEGIN
i:=2147483648;
str(i,s);
if s<>'2147483648' then
begin
writeln(s);
halt(1);
end
else
halt(0);
END.