tb0150.pp 515 B

12345678910111213141516171819
  1. { %OPT=-Un }
  2. { Old file: tbs0180.pp }
  3. { 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) }
  4. { this name should be accepted with -Un option !! }
  5. UNIT tb154_wrong;
  6. INTERFACE
  7. uses
  8. ub0150;
  9. procedure dummy;
  10. IMPLEMENTATION
  11. procedure dummy;
  12. begin
  13. { Unit_with_strange_name.dummy; should this work ?? }
  14. ub0150.dummy;
  15. end;
  16. END.