blob: 830052ed532033713ebc80fc24750c3262d33e4c (
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
29
30
31
32
|
var
wstr1: widestring;
i: longint;
w2,w3: widestring;
procedure testproc2(w: widestring);
begin
wstr1:=w;
end;
procedure testproc1(const w: widestring);
begin
w2:='';
testproc2(w);
if pointer(w)<>pointer(wstr1) then begin
writeln('Test failed!');
Halt(1);
end;
if w<>w3 then begin
writeln('Test failed!');
Halt(1);
end;
end;
begin
setlength(w2, 100000);
for i:=1 to length(w2) do
w2[i]:=WideChar(Chr(i mod $60 + $20));
w3:=w2;
wstr1:=w2;
testproc1(wstr1);
end.
|