bug0303 copied

This commit is contained in:
pierre 1999-12-12 23:34:43 +00:00
parent d28395e01f
commit 116acd6f10

21
tests/tbs/tbs0303.pp Normal file
View File

@ -0,0 +1,21 @@
type
intarray = array[1..1000,0..1] of longint;
procedure test;
var
ar : intarray;
i : longint;
procedure local;
begin
i:=4;
ar[i,0]:=56;
ar[i-1,0]:=pred(ar[i,0]);
end;
begin
local;
end;
begin
test;
end.