peter %!s(int64=22) %!d(string=hai) anos
pai
achega
aa51a11b02
Modificáronse 1 ficheiros con 17 adicións e 0 borrados
  1. 17 0
      tests/webtbf/tw2562.pp

+ 17 - 0
tests/webtbf/tw2562.pp

@@ -0,0 +1,17 @@
+{ %fail }
+{ Source provided for Free Pascal Bug Report 2562 }
+{ Submitted by "Nikolay Nikolov" on  2003-07-06 }
+{ e-mail: [email protected] }
+Procedure Tralala(Var q, w);
+
+Begin
+  q := w;
+End;
+
+Var
+  q : Integer;
+  w : Array[1..10] Of Integer;
+
+Begin
+  Tralala(q, w);
+End.