tw3259.pp 333 B

12345678910111213141516171819
  1. { Source provided for Free Pascal Bug Report 3259 }
  2. { Submitted by "Andreas Hausladen" on 2004-08-18 }
  3. { e-mail: [email protected] }
  4. {$mode objfpc}
  5. unit tw3259;
  6. interface
  7. implementation
  8. function MyFunc(forward: Integer): Integer; forward;
  9. function MyFunc(forward: Integer): Integer;
  10. begin
  11. Result := forward;
  12. end;
  13. end.