tb0331.pp 144 B

12345678910111213
  1. {$mode objfpc}
  2. { tests assignements and compare }
  3. var
  4. o1,o2 : tobject;
  5. begin
  6. o1:=nil;
  7. o2:=o1;
  8. if o2<>nil then
  9. halt(1);
  10. end.