summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw1068.pp
blob: c01703030f497a33936758281502329b42add32d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ %VERSION=1.1 }

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.