mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
16 lines
187 B
ObjectPascal
16 lines
187 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.
|