mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 09:46:12 +02:00
no message
This commit is contained in:
parent
1117f793db
commit
34fb0e67f5
21
tests/test/testfi1.pp
Normal file
21
tests/test/testfi1.pp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{$mode delphi}
|
||||||
|
var
|
||||||
|
a,c1,c2 : ansistring;
|
||||||
|
aa : array[1..10] of ansistring;
|
||||||
|
i : longint;
|
||||||
|
|
||||||
|
begin
|
||||||
|
c1:='Hello ';
|
||||||
|
c2:=' world';
|
||||||
|
a:=c1+c2;
|
||||||
|
finalize(a);
|
||||||
|
if length(a)<>0 then
|
||||||
|
halt(1);
|
||||||
|
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);
|
||||||
|
end.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user