mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 18:09:30 +02:00
*** empty log message ***
This commit is contained in:
parent
5eb17fe1c4
commit
f53823cb77
14
tests/webtbs/tbug1068.pp
Normal file
14
tests/webtbs/tbug1068.pp
Normal file
@ -0,0 +1,14 @@
|
||||
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.
|
Loading…
Reference in New Issue
Block a user