Browse Source

* fixed compilation of ppc system unit

florian 22 years ago
parent
commit
9825fadb99
1 changed files with 27 additions and 0 deletions
  1. 27 0
      tests/tbs/tb0457.pp

+ 27 - 0
tests/tbs/tb0457.pp

@@ -0,0 +1,27 @@
+{ %version=1.1}
+{$mode objfpc}
+program testa;
+
+Type
+  TA = array of Integer;
+
+var
+  A,B : TA;
+  I,J : Integer;
+begin
+  Setlength(A,10);
+  For I:=0 to 9 do
+      A[I]:=I;
+  B:=Copy(A,3,6);
+  if High(B)<>5 then
+    begin
+      writeln('Error 1');
+      halt(1);
+    end;
+  For I:=0 to High(B) do
+    if b[i]<>i+3 then
+      begin
+        writeln('Error 2');
+        halt(1);
+      end;
+end.