mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 19:28:10 +02:00
28 lines
257 B
ObjectPascal
28 lines
257 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tb0656;
|
|
|
|
{$mode objfpc}
|
|
|
|
procedure Test1(const aArg);
|
|
begin
|
|
end;
|
|
|
|
procedure Test2(const aArg);
|
|
begin
|
|
Test1(aArg);
|
|
end;
|
|
|
|
procedure Test3(constref aArg);
|
|
begin
|
|
end;
|
|
|
|
procedure Test4(constref aArg);
|
|
begin
|
|
Test3(aArg);
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|