mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:47:59 +02:00
23 lines
287 B
ObjectPascal
23 lines
287 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tover5;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TTestClass = class
|
|
procedure Test(aArg1: LongInt);
|
|
function Test(aArg1: LongInt): LongInt;
|
|
end;
|
|
|
|
procedure TTestClass.Test(aArg1: LongInt);
|
|
begin
|
|
end;
|
|
|
|
function TTestClass.Test(aArg1: Longint): LongInt;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|