mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
20 lines
334 B
ObjectPascal
20 lines
334 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 3259 }
|
|
{ Submitted by "Andreas Hausladen" on 2004-08-18 }
|
|
{ e-mail: Andreas.Hausladen@gmx.de }
|
|
|
|
{$mode objfpc}
|
|
|
|
unit tw3259;
|
|
interface
|
|
|
|
implementation
|
|
|
|
function MyFunc(forward: Integer): Integer; forward;
|
|
|
|
function MyFunc(forward: Integer): Integer;
|
|
begin
|
|
Result := forward;
|
|
end;
|
|
|
|
end.
|