fpc/tests/tbs/tb0331.pp
2000-11-30 22:38:14 +00:00

14 lines
144 B
ObjectPascal

{$mode objfpc}
{ tests assignements and compare }
var
o1,o2 : tobject;
begin
o1:=nil;
o2:=o1;
if o2<>nil then
halt(1);
end.