+ check for internal error 8954 when passing arrays[1..1] as value

parameter
This commit is contained in:
Jonas Maebe 2000-09-18 12:38:40 +00:00
parent 857149a109
commit a5dd1abd5f

12
tests/ts/ts010032.pp Normal file
View File

@ -0,0 +1,12 @@
type ta = array[1..1,1..100] of integer;
procedure t(a: ta);
begin
end;
var a: ta;
begin
t(a);
end.