mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
17 lines
272 B
ObjectPascal
17 lines
272 B
ObjectPascal
{ %opt=-Seh -vh }
|
|
|
|
{ Source provided for Free Pascal Bug Report 2351 }
|
|
{ Submitted by "Sergey Kosarevsky" on 2003-02-02 }
|
|
{ e-mail: netsurfer@au.ru }
|
|
|
|
{$mode objfpc}
|
|
|
|
Procedure DefaultParam(Param:String='10');
|
|
Begin
|
|
WriteLn(Param);
|
|
End;
|
|
|
|
Begin
|
|
DefaultParam();
|
|
End.
|