tb0150.pp 530 B

1234567891011121314151617181920
  1. { %OPT=-Un }
  2. { %RECOMPILE }
  3. { Old file: tbs0180.pp }
  4. { problem for units with names different from file name should be accepted with -Un !! Solved, but you still need to use the file name from other units OK 0.99.9 (PM) }
  5. { this name should be accepted with -Un option !! }
  6. UNIT tb154_wrong;
  7. INTERFACE
  8. uses
  9. ub0150;
  10. procedure dummy;
  11. IMPLEMENTATION
  12. procedure dummy;
  13. begin
  14. { Unit_with_strange_name.dummy; should this work ?? }
  15. ub0150.dummy;
  16. end;
  17. END.