mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-02 18:58:24 +02:00
*** empty log message ***
This commit is contained in:
parent
a9745c53b6
commit
d9c7424be4
13
tests/webtbs/tbug879.pp
Normal file
13
tests/webtbs/tbug879.pp
Normal 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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user