summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/trtti3.pp
blob: 7192b6ad5eb56982e713fdf597487c514e112582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ %VERSION=1.1 }

{$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
     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
       begin
         writeln('error at element: ',i,' contents: ''',aa[i],'''  instead of ''''');
         halt(1);
       end;
end.