From c816e71debc281a9edd50e95f1db87560ce19e20 Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 6 Mar 2005 13:53:10 +0000 Subject: [PATCH] no message --- tests/webtbs/tw3529.pp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/webtbs/tw3529.pp diff --git a/tests/webtbs/tw3529.pp b/tests/webtbs/tw3529.pp new file mode 100644 index 0000000000..4410d4051f --- /dev/null +++ b/tests/webtbs/tw3529.pp @@ -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.