mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 01:09:27 +02:00
*** empty log message ***
This commit is contained in:
parent
ef303e5570
commit
5a37581b29
@ -12,12 +12,18 @@ begin
|
||||
a:=c1+c2;
|
||||
finalize(a);
|
||||
if length(a)<>0 then
|
||||
halt(1);
|
||||
begin
|
||||
writeln('length of a: ',length(a),' instead of 0');
|
||||
halt(1);
|
||||
end;
|
||||
for i:=1 to 10 do
|
||||
aa[i]:=c1+c2;
|
||||
finalize(aa[1],10);
|
||||
for i:=1 to 10 do
|
||||
if length(aa[i])<>0 then
|
||||
halt(1);
|
||||
begin
|
||||
writeln('error at element: ',i,' contents: ''',aa[i],''' instead of ''''');
|
||||
halt(1);
|
||||
end;
|
||||
end.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user