Browse Source

*** empty log message ***

florian 25 years ago
parent
commit
f53823cb77
1 changed files with 14 additions and 0 deletions
  1. 14 0
      tests/webtbs/tbug1068.pp

+ 14 - 0
tests/webtbs/tbug1068.pp

@@ -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.