fpc/tests/ts010101.pp
1998-03-25 13:43:38 +00:00

12 lines
128 B
ObjectPascal

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