fpc/tests/test/tover6.pp
2020-07-31 15:55:34 +00:00

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.