Browse Source

+ added after comment on fpc-devel by <[email protected]>

Jonas Maebe 23 years ago
parent
commit
e56fafb7d7
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/tbs/tb0392.pp

+ 13 - 0
tests/tbs/tb0392.pp

@@ -0,0 +1,13 @@
+var
+  l: longint;
+  a: array[0..1] of char; 
+
+begin
+  l := 50;
+  str(l,a);     
+  if a <> '50' then
+    begin
+      writeln('error');
+      halt(1);
+    end;
+end.