tb0060.pp 453 B

123456789101112131415161718192021222324252627282930
  1. { Old file: tbs0067b.pp }
  2. { (Work together) OK 0.99.1 }
  3. unit tb0060;
  4. interface
  5. type
  6. tlong=record
  7. a : longint;
  8. end;
  9. procedure p(var l:tlong);
  10. implementation
  11. uses ub0060;
  12. { the tlong parameter is taken from unit bug0067,
  13. and not from the interface part of this unit.
  14. setting the uses clause in the interface part
  15. removes the problem }
  16. procedure p(var l:tlong);
  17. begin
  18. ub0060.p(ub0060.tlong(l));
  19. end;
  20. end.