Explorar el Código

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

Jonas Maebe hace 23 años
padre
commit
e56fafb7d7
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  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.