tb0128.pp 201 B

12345678910111213141516
  1. { Old file: tbs0147.pp }
  2. { function b; is not allowed in implementation OK 0.99.7 (PFV) }
  3. {$mode tp}
  4. unit tb0128;
  5. interface
  6. function b:boolean;
  7. implementation
  8. function b;
  9. begin
  10. end;
  11. end.