*** empty log message ***

This commit is contained in:
florian 2000-03-21 09:12:30 +00:00
parent a9745c53b6
commit d9c7424be4

13
tests/webtbs/tbug879.pp Normal file
View File

@ -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.