tb0208.pp 327 B

123456789101112131415161718192021222324252627
  1. { Old file: tbs0244.pp }
  2. { nested procedures can't have same name as global ones (same as tbs0237) OK 0.99.13 (PM) }
  3. Unit tb0208;
  4. {test also with -So !!!}
  5. Interface
  6. Procedure t(a,b: longint);
  7. Implementation
  8. Procedure t(a,b: longint);
  9. begin
  10. end;
  11. Procedure t2;
  12. Procedure t(l: Longint);
  13. Begin
  14. End;
  15. Begin
  16. End;
  17. End.