mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 12:58:11 +02:00
26 lines
246 B
ObjectPascal
26 lines
246 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tover6;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
procedure Test(aArg: LongInt);
|
|
function Test(aArg: LongInt): LongInt;
|
|
|
|
implementation
|
|
|
|
procedure Test(aArg: LongInt);
|
|
begin
|
|
|
|
end;
|
|
|
|
function Test(aArg: LongInt): LongInt;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|