Browse Source

*** empty log message ***

florian 25 years ago
parent
commit
d9c7424be4
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/webtbs/tbug879.pp

+ 13 - 0
tests/webtbs/tbug879.pp

@@ -0,0 +1,13 @@
+PROGRAM TEST;
+TYPE
+        ta      = ARRAY[3..8] OF word;
+VAR
+        aa      : ^ta;
+        i       : word;
+BEGIN
+   NEW(aa);
+   FOR i:=LOW(aa^) TO HIGH(aa^) DO
+     aa^[i]:=0;
+END.
+
+