* fix compare with null

git-svn-id: trunk@2310 -
This commit is contained in:
peter 2006-01-17 08:44:57 +00:00
parent abc49206fc
commit 3207ce77e1
2 changed files with 13 additions and 0 deletions

1
.gitattributes vendored
View File

@ -6679,6 +6679,7 @@ tests/webtbs/tw4635.pp svneol=native#text/plain
tests/webtbs/tw4640.pp svneol=native#text/plain
tests/webtbs/tw4669.pp svneol=native#text/plain
tests/webtbs/tw4675.pp svneol=native#text/plain
tests/webtbs/tw4700.pp svneol=native#text/plain
tests/webtbs/ub1873.pp svneol=native#text/plain
tests/webtbs/ub1883.pp svneol=native#text/plain
tests/webtbs/uw0555.pp svneol=native#text/plain

12
tests/webtbs/tw4700.pp Executable file
View File

@ -0,0 +1,12 @@
var
a: Boolean;
b,c,d : Variant;
e : Integer;
begin
b := 'abc';
c := null;
a := b = c;
a := b <> c;
d := e - c;
d := e + c;
end.