mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 00:49:31 +02:00
12 lines
125 B
ObjectPascal
12 lines
125 B
ObjectPascal
{ %norun }
|
|
|
|
{$mode objfpc}
|
|
|
|
procedure Test(constref AParam: String = 'def_param');
|
|
begin
|
|
writeln(AParam);
|
|
end;
|
|
|
|
begin
|
|
end.
|