ts010101.pp 128 B

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