mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
no message
This commit is contained in:
parent
0a9b1e5b63
commit
c816e71deb
19
tests/webtbs/tw3529.pp
Normal file
19
tests/webtbs/tw3529.pp
Normal file
@ -0,0 +1,19 @@
|
||||
{ Source provided for Free Pascal Bug Report 3529 }
|
||||
{ Submitted by "Alexey Barkovoy" on 2005-01-07 }
|
||||
{ e-mail: clootie@ixbt.com }
|
||||
var
|
||||
v1, v2: Variant;
|
||||
S1, S2: AnsiString;
|
||||
begin
|
||||
S1:= 'aa';
|
||||
S2:= 'bb';
|
||||
v1:= S1;
|
||||
v2:= S2;
|
||||
if v1 = v2 then
|
||||
begin
|
||||
WriteLn('Equal');
|
||||
halt(1);
|
||||
end
|
||||
else
|
||||
writeln('not-equal');
|
||||
end.
|
Loading…
Reference in New Issue
Block a user